I edit the grid using editable: \"popup\"
as shown on Telerik\'s demo page. After I edit the grid, I want the grid to refresh. Does the grid have any event that is
using AutoSync(true)
in ajax mvc kendo grid having pop up edit mode causes the pop up to not show up at all.
So I use this
function onRequestEnd(e) {
if(e.type == "create" || e.type == "destroy" || e.type == "update") {
setTimeout(function myfunction() {
$("#mygrid").data("kendoGrid").dataSource.read();
}, 1000);
}
}
The time out is to make sure you dont over lap the crud operation.