fires before an event is dropped
context | object | an object with drop context |
event | object | HTML event |
boolean | returning false will block drop operations |
$$("scheduler1").attachEvent("onBeforeEventDrop", function(context, e) {
// your code here
});
The context object contains the following fields:
Returning false from the event handler will block drop operations and their further processing.
$$("scheduler1").attachEvent("onBeforeEventDrop", function(context, e) {
return false;
});