I need to stop a movement of a sv-element when drag start or has any disable drag
at Html sv-root sv-on-start="cellDragStart($item, $part, $index, $helper)"
and in my controller
$scope.cellDragStart = function ($item, $part, $index, $helper) { console.log($item); console.log($part); console.log($index); console.log($helper); $helper.element.stop() }
But it doesn't work