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
In case someone else needs to know how to do this. You can include the "complete" function in your create as well as update bits.
transport: {
read: {
url: "http://myurl.json"
},
create: {
url: "http://mycreate.json",
type: "POST",
complete: function(e) {
$("#grid").data("kendoGrid").dataSource.read();
}
},