Question

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?

Was it helpful?

Solution

you add code below:

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

and create javascript function

function RequestEnd(e) {
    if (e.type == "update") {
        // your code here
    }
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top