dhtmlxGrid - dataProcessor's update completion event

Dear Team

Could you please help me in following?

I am using dhtmlxgrid on a form and using dataprocessor to save the updated data into database.

                    myDataProcessor = new dataProcessor(xmlSaveAction);
                    myDataProcessor.enableDataNames(true);
                    myDataProcessor.setUpdateMode("off");
                    myDataProcessor.defineAction("error",myErrorHandler);
                    myDataProcessor.setTransactionMode("POST",true);
                    myDataProcessor.init(mygrid);

This updates only updated rows into database on submit action.
I want to call one database stored procedure after all rows are updated to database.

My difficulty is that is there any event or method of dataprocessor or dhtmlxgrid [ such as onAllRowsUpdateCompelete() ] where I can call this stored procedure?

Any help in this regard will be highly appreciated.

Thank you.

docs.dhtmlx.com/doku.php?id=dhtm … onfullsync