Creating drag and drop interface¶
In eZ Platform, you can create a generic interface for drag and drop interactions reusable in many places.
First, prepare the HTML code structure that will be placed in a Twig template in the following way:
1 |  | 
Next, add options in the same Twig template or in a JavaScript code that comes with the template following the convention:
1 2 3 4 5  |  | 
For more information on creating Twig templates, see Templating basics.
Options¶
Full list of options:
| Option | Description | Required | 
|---|---|---|
itemsContainer | 
Reference to DOM node containing a draggable item | required | 
selectorItem | 
CSS selector of a draggable item | required | 
selectorPlaceholder | 
CSS selector of a placeholder | required | 
afterInit | 
Callback function invoked after interface initialization | optional | 
afterDragStart | 
Callback function invoked after starting to drag | optional | 
afterDragOver | 
Callback function invoked after moving onto a droppable element | optional | 
afterDrop | 
Callback function invoked after dropping an element | optional | 
attachCustomEventHandlersToItem | 
Function to be invoked while attaching event handlers to every item in the item's container. Item of HTMLElement type is passed to the function as the first param | 
optional |