kendoGrid
我的页面上有以下内容,加载JSON
时从指定的 URL 接收对象。
但后来我想将它绑定JSON
到从其他来源收到的其他一些数据。JSON
有没有办法可以用新对象绑定刷新包含网格的现有数据?
$('#grid').kendoGrid({
sortable: true,
groupable: true,
scrollable: true,
pageable: {
pageSizes: 9
},
dataSource: {
transport: {
read: {
url: "../Get/JsonData",
dataType: "Json"
}
}
},
columns: [
{ field: "name", title: "Name", width: 100 },
... ...
]
});