一意の識別子を持つ剣道グリッドがあり、行をクリックすると、2 番目のグリッドに詳細が表示されます。両方のデータセットは、データベースにリンクする php ファイルから取り込まれます。したがって、2 番目のグリッドには、その一意の識別子のすべての詳細が表示されます。
最初のグリッド:
$(document).ready(function() {
$("#grid").kendoGrid({
dataSource: {
pageSize: 100,
transport: {
read: "http://localhost:8888/stationslist.php",
dataType: "json"
},
schema: {
data: "data",
total: function(response) {
return $(response.data).length;
}
}
},
selectable: "single",
sortable: {
mode: "multiple",
allowUnsort: true
},
change: function (arg) {
var selected = $.map(this.select(), function (item) {
return $(item).find('td').first().text();
});
}
2 番目のグリッド:
$(document).ready(function() {
$("#grid2").kendoGrid({
dataSource: {
pageSize: 100,
transport: {
read: "http://localhost:8888/spots.php",
dataType: "json"
},
schema: {
data: "data",
total: function(response) {
return $(response.data).length;
}
}
}