Check documentation for the latest version of dhtmlxSuite onDragOut DHTMLX Docs

onDragOut

fires when an item is dragged out of the potential target (the event can be blocked)

void onDragOut(string|number dId,string|number tId,object sObj,object tObj);
dIdstring|numberthe id of the dragged item
tIdstring|numberthe id of the potential drop landing
sObjobjecta grid object
tObjobjectthe target grid object

Available only in PRO Edition

Example

mygrid.attachEvent("onDragOut", function(dId,tId,sObj,tObj){
    //your code here
});

Back to top