fires when an item is dragged out of the potential target (the event can be blocked)
dId | string|number | the id of the dragged item |
tId | string|number | the id of the potential drop landing |
sObj | object | a grid object |
tObj | object | the target grid object |
Available only in PRO Edition
mygrid.attachEvent("onDragOut", function(dId,tId,sObj,tObj){
//your code here
});
Back to top