質問

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?

役に立ちましたか?

解決

you add code below:

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

and create javascript function

function RequestEnd(e) {
    if (e.type == "update") {
        // your code here
    }
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top