onEventChanged

occurs after the user has edited an event and saved the changes (after clicking on the edit and save buttons in the event's bar or in the details window)

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

Example

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

Related samples

Back to top