fires before a dragged element is moved 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 dropping of the element |
$$("myBoard").attachEvent("onListBeforeDragIn", function(context,ev,list){
if(...){
return false;
}
return true;
});
The properties of the context object are: