我有一个具有唯一标识符的剑道网格,当我单击一行时,我希望它在第二个网格中显示详细信息。这两个数据集都是从链接到数据库的 php 文件中填充的。因此,第二个网格显示了该唯一标识符的所有详细信息。
第一个网格:
$(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();
});
}
第二格:
$(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;
}
}
}