Show TOC

 DropTargetLocate this document in the navigation structure

DropTarget is a generic drop target that acts as an invisible frame around another UI element.

The DropTarget is visualized by a dotted line around the container inside this UI element, as shown in the picture below:

Event
  • onDrop (String data, String mimeType, String tags)

    This event is triggered when the user drops an object onto this drop target.

    • data : The text representation of the data in the drag source.
    • mimeType : The mime type specified for the drag source.
    • tags : The set of tags corresponding to the data that has been dropped here, as defined by the drag source.
More Information