Is there a way to drag and drop the entire row without using the drag helper?
I did below but this means there is a drag-handler icon:
dragModel: {
on: true,
diDrag: "QTY",
tmplDrag: '<span class="ui-icon ui-icon-grip-dotted-vertical pq-drag-handle" style="cursor:move; vertical-align:text-bottom; touch-action:none; float:left;"> </span>',
diHelper: ["QTY", "NAME"]
},
dropModel: {
on: true
},
moveNode: function(e, uiDrop){ console.log(uiDrop); }
I don't want the diDrag drag-handler icon and just want to drag anywhere on the row to initiate the drag (I am already using row selection). I thought of trapping a mouse down event and after a move of a certain amount of pixels, manually trigger a drag start, but not sure how?