fires when the user creates a new event by dragging the cursor over the scheduler
e | Event | a native event object |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
scheduler.attachEvent("onBeforeEventCreated", function (e){
//any custom logic here
return true;
});
Note, the event will fire only if the drag_create configuration option is enabled.
Back to top