onBeforeDrop
fires before a dragged element is released over the droppable area
boolean onBeforeDrop(object context,Event native_event);
| context | object | the drag-n-drop context |
| native_event | Event | an HTML event object |
| boolean | returning false will prevent further drag-and-drop processing |
Example
some.attachEvent("onBeforeDrop", function(context, native_event){
//... some code here ...
// return false to block operation
return true;
});
Related samples
Details
If you drag multiple items, the event will be called once for the entire batch of items.
The drag-and-drop context can have the following properties:
- from - the source object
- to - the target object
- source - the ID of the dragged item(s)
- target - the ID of the drop target, null for drop on empty space
- start - the ID from which drag-n-drop was started
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix
ui widget library and page of
list ui product.