Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by mano on Jul 25, 2009 03:48
open dhtmlx forum
Regarding dhtmlxScheduler

Pls say me when i save a record of a newly created event then which event i should fire


scheduler.attachEvent("onEventAdded", function(event_id,event_object){
                    //any custom logic here
          });
                     or
scheduler.attachEvent("onEventChanged", function(event_id,event_object){
                    //any custom logic here
          });
Answer posted by Alex (support) on Jul 27, 2009 01:05

When you add new event, the onEventAdded is called.

The onEventChanged is fired after editing existent event.