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
});
When you add new event, the onEventAdded is called.
The onEventChanged is fired after editing existent event.