onEventDragOut

fires when a dragged event is moved out of the scheduler

void onEventDragOut(string id,Event e);
idstringthe event's id
eEventa native event object

Example

scheduler.attachEvent("onEventDragOut", function (id, e){
    //any custom logic here
});

Details

The event fires only in case of drag-n-drop between schedulers.

See also
Back to top