Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by william on Sep 05, 2008 00:30
open dhtmlx forum
dataprocessor update status

I have serveral rows to update. I want to do something in the callback function for the last update row. Is is possible?
Answer posted by Support on Sep 05, 2008 01:48
You can use code similar to next

dp.setOnAfterUpdate(function(){
   if (dp.getSyncState()){
        //code here will be called after last row updated
   }
});