Lines Matching refs:drop

11drop capabilities for the following components, allowing them to serve as the drag source (from wh…
13 …ult drag behavior by setting the [draggable](ts-universal-attributes-drag-drop.md#draggable) attri…
15drop actions by default: [Search](ts-basic-components-search.md), [TextInput](ts-basic-components-…
17 <!--RP1--><!--RP1End-->To enable drag and drop for other components, you need to set the **draggabl…
57 Triggered when a dragged item enters a valid drop target. This event takes effect only when a liste…
73 Triggered when a dragged item moves in a valid drop target. This event takes effect only when a lis…
89 Triggered when a dragged item leaves a valid drop target. This event takes effect only when a liste…
105drop target. If you do not explicitly call **event.setResult()** in **onDrop** to set the result o…
137 Invoked when the component enters a state prior to a drop and drop operation.
185drop animation when the dragging ends.<br>If this parameter is set to **true**, the default drop a…
197 | setResult(dragRect: [DragResult](#dragresult10))<sup>10+</sup> | void | Sets the drag and drop re…
198 | getResult()<sup>10+</sup> | [DragResult](#dragresult10) | Obtains the drag and drop result from t…
230 | DRAG_SUCCESSFUL | The drag and drop operation succeeded. It can be used in **onDrop**.|
231 | DRAG_FAILED | The drag and drop operation failed. It can be used in **onDrop**.|
232 | DRAG_CANCELED | The drag and drop operation was canceled. It can be used in **onDrop**.|
233 | DROP_ENABLED | The component allows for a drop operation. It can be used in **onDragMove**.|
234 | DROP_DISABLED | The component does not allow for a drop operation. It can be used in **onDragMove…
261 | PREVIEW_LANDING_STARTED | 4 | A drop animation is started. (Triggered when the drop animation sta…
262 | PREVIEW_LANDING_FINISHED | 5 | A drop animation is finished. (Triggered when the drop animation e…
263 | ACTION_CANCELED_BEFORE_DRAG | 6 | A drop animation is terminated. (Triggered when the finger is l…
350 // The result value obtained from onDragEnd is set in onDrop of the drop target.
480 ![events-drag-drop](figures/events-drag-drop.png)