onBeforeEventDelete
Description
Fires after the user clicks on the delete button (in the event bar or details window)
onBeforeEventDelete: (id: string, ev: object) => boolean
Parameters
id- (required) string - the event's idev- (required) object - the event's data object
Returns
result- (boolean) - defines 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.
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.