$dragMark

called during drag-n-drop, when some item of the component should be marked as an active drop target

boolean $dragMark();
booleanreturning false will prevent a drag operation

Related samples

Details

The method isn't purposed for direct call! It is an extension point.

By default, returns false.

You can override it with your own logic, but check drag-n-drop related events first, as they provide a much more convenient way of drag-n-drop handling.

See also
Back to top