Could be implemented as a binding on the draggable attribute. ``` <widget draggable="ctrl.dragging"></widget> ``` JS (in, say, a controller): ``` this.dragging = false; // Disables dragging this.dragging = true; // Enables dragging ```
Could be implemented as a binding on the draggable attribute.
JS (in, say, a controller):