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
editable: \"popup\"
Add Events into DataSource
.DataSource(dataSource => dataSource.Ajax( .Events(e => e.RequestEnd("PowerPlantProduction.onRequestEnd"))** )
Javascript:
onRequestEnd: function (e) { if (e.type == "update") { if (!e.response.Errors) { e.sender.read(); } } },