onEventDeleted

fires after the specified event was deleted (version 3.0+)

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

Example

scheduler.attachEvent("onEventDeleted", function(id,ev){
    // custom code
});

Related samples

Details

The event will fire regardless of whether the DataProcessor library is used or not.

Back to top