I would like to reload the grid by using updatefromXML after the dataprocessor has completed senind the data back to the server. So is there a way to know wether the dataprocessor has completed sending all the inserted,updated and deleted rows back to the server??
The dataprocessor has an event which fires after each row update
dataproc.setOnAfterUpdate(function(){
// code here will be called after each row updated
})
If you need to catch moment when all rows processed , you can do it in next way
dataproc.setOnAfterUpdate(function(){
if (dataproc.getSyncState()){
// code here will be called after all rows updated
}
})