我有一個具有唯一標識符的Kendo網格,當我單擊一行時,我希望它在第二個網格中顯示細節。這兩個數據集都從鏈接到數據庫的php文件填充。所以第二個網格顯示了該唯一標識符的所有細節。Kendo UI - 如何讓SQL填充網格過濾器第二個SQL填充網格點擊?
一格:
$(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();
});
}
二格:
change : function (e) {
var item = this.dataItem(this.select());
populateGrid2(item);
}
如果我們從一開始作爲item
的所有信息:
$(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;
}
}
}
filter
文檔,你所看到的這個實現? http://demos.kendoui.com/web/grid/detailtemplate.html – Mate 2013-04-23 23:55:59是的,我有。但我不希望它出現在同一個網格中,我希望它位於一個單獨的網格中。 – 2013-04-23 23:58:10