Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Aug 06, 2008 08:56
open dhtmlx forum
dataprocessor

I would like to show an alert after the updates have been successfully saved into the database. How can i do that??
Answer posted by Support on Aug 06, 2008 09:19

can be done as

dp.setOnAfterUpdate(function(){
       if (dp.getSyncState()) alert("all updated");
});

where dp - dataprocessor instance