fires when the user double clicks on an event
| id | string | the event's id |
| e | Event | a native event object |
| boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
scheduler.attachEvent("onDblClick", function (id, e){
//any custom logic here
return true;
})
The event is blockable. Return false to cancel the default behaviour.
Back to top