Sortable
Sortable copied to clipboard
Define a grab zone
trafficstars
Hi,
Is there a way to define in the children elements of the Sortable component just a zone to grab the whole element ? The whole element still sortable but you have to grab it on a specific place. I don't know if it's clear.
new Sortable(this.el, {
...,
dragClass: "drag-item",
handle: ".grab-zone"
})
<div id="parent-element" class="drag-item">
<div id="child-element" class="grab-zone">
Grab here
</div>
</div>