onDblClick

fires when the user double clicks on an event

boolean onDblClick(string id,Event e);
idstringthe event's id
eEventa native event object
booleandefines 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.

Back to top