I have following kendoGrid
on my page that on load receives JSON
object from the specified URL.
But later i want to bind it to some other JSON
data received from other source. Is there a way a can bind-refresh existing data containing grid with a new JSON
object?
$('#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 },
... ...
]
});