fires before the drag operation started
context | object | context object |
ev | Event object | native event object |
boolean | true - to trigger the default action, false - to block it |
myList.attachEvent("onBeforeDrag", function (context, ev){
// your code here
return true;
});
possible context object values:
The event is blockable, returning false will block the default action.
Back to top