fires when a dragged event is dropped onto the area out of the scheduler
id | string | the event's id |
ev | object | the event's object |
to | object | the target scheduler(null, if dropped to an empty area) |
e | Event | a native event object |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
scheduler.attachEvent("onEventDropOut", function (id, ev, to, e){
//any custom logic here
return true;
});
The event fires only in case of drag-n-drop between schedulers.