fires before a dragged element is released over the droppable list
context | object | drag-n-drop context object with a set of properties (see details) |
ev | Event | a native event object |
list | object | the list object where the event has happened |
boolean | returning false will prevent further drag-and-drop processing |
$$("myBoard").attachEvent("onListBeforeDrop", function(context,ev,list){
if(...){
return false;
}
return true;
});
The properties of the context object are: