-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
On mobile devices, touch swipe gestures and drag gestures conflict with each other. Therefore, I want to implement the function of triggering the drag event after a long press, similar to long-pressing an icon to drag it on the mobile phone desktop. The problem I'm encountering now is that after pressing, I activate dragging through grid.enableMove(true, currentElement);, but I have to release the touch and then press again to drag, which makes the operation discontinuous. I wonder if there's a way to achieve a more instinctive interaction like this.