onBeforeEventDelete

fires after the user clicks on the delete button (in the event bar or details window)

boolean onBeforeEventDelete(string id,object ev);
idstringthe event's id
evobjectthe event's data object
booleandefines whether the default action of the event will be triggered (true) or canceled (false)

Example

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

Details

The event is blockable. Return false to cancel the default processing.

Back to top