$drop
the method is called when an item is dragged and dropped on a valid target
function $drop( // a DOM element from which a drag-n-drop action has started source: HTMLElement, // a DOM element of a possible drop landing target: HTMLElement, // a native HTML event ev: Event): void
Example
Section titled “Example”webix.DragControl.addDrop("myDrop",{ $drop:function(source, target){...}});
also check the next samples:
Details
Section titled “Details”You can override it with your own logic, but check drag-n-drop related events first, as they provide a much more convenient way for drag-n-drop handling.
See also
Section titled “See also”Articles