Documentation

$dragOut

method called when item moved out of possible drop landing during dnd

void $dragOut(HTMLElement source,HTMLElement old_target,HTMLElement new_target,Event ev);

Parameters

sourceHTMLElementDOM element on which dnd action started
old_targetHTMLElementDOM element of drop from which item was moved out
new_targetHTMLElementnew DOM element which will be used as drop target ( can be null )
evEventnative html event
Details

method not purposed for direct call! It is an extension point.

You can override it with your own logic, but be sure to check dnd related events first, as they are provide much more convinient way for dnd handling.

Back to top