how to create saveChanges callback function in grid kendo mvc

c#, javascript, kendo-asp.net-mvc, kendo-grid, telerik-mvc

Solution

you add code below:

.Events(e => e.RequestEnd("RequestEnd"))

and create javascript function

function RequestEnd(e) {
    if (e.type == "update") {
        // your code here
    }
}

Problem

I'm having some timing issues and was wondering if there is a way for `saveChanges` to have a callback when it's save is complete?

Original source