onDblClick
Description
Fires when the user double clicks on an event
onDblClick: (id: string, e: Event) => boolean;
Parameters
id- (required) string - the event's ide- (required) Event - a native event object
Returns
result- (boolean) - defines whether the default action of the event will be triggered (true) or canceled (false)
Example
scheduler.attachEvent("onDblClick", function (id, e){
//any custom logic here
return true;
})
Details
The event is blockable. Return false to cancel the default behaviour.
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.