onEventAdded

fires when the user adds a new event to the scheduler

void onEventAdded(string id,object ev);
idstringthe event's id
evobjectthe event's object

Example

scheduler.attachEvent("onEventAdded", function(id,ev){
    //any custom logic here
});

Related samples

Back to top