v7.3.0

Draggable
Mixin
internal

Mix this into another class to enable drag/drop support.

To use a draggable, it must be associated with an element that contains draggable content:

 let draggable = new MyDraggable({
     dragRootElement : someElement
 });

Once the dragRootElement is assigned, any element inside that root is a candidate for dragging. To limit the allowed element, set the dragSelector config.

 let draggable = new MyDraggable({
     dragRootElement : someElement,
     dragSelector    : '.drag-this'
 });
No results

Configs

Configs are options you supply in a configuration object when creating an instance of this class

Properties

Properties are getters/setters or publicly accessible variables on this class

Functions

Functions are methods available for calling on the class

    Events

    Events are triggered for certain actions in this class and can be listened for to react to those actions in your code

    Event handlers

    Event handlers are callbacks called as a result of certain actions in this class

    Source path

    Core/mixin/Draggable.js

    Contents