vue.draggable.next icon indicating copy to clipboard operation
vue.draggable.next copied to clipboard

Two draggable on top of each other

Open spixy opened this issue 2 years ago • 0 comments

Jsfiddle link

none because of #147

Step by step scenario

Have two vertical draggable columns (#1 and #2) and another draggable (#3) with position: fixed; z-index: 10 that renders on top of both of them (and partially intersects them).

Actual Solution

Dragging item from to #1 to #3 also drags the item into #2.

Expected Solution

Dragging item from to #1 to #3 drags the item into #3 only.


I tried draggable3.addEventListener("dragenter", e => e.stopPropagation()); but with no success, because draggable #3 is not child of other draggables.

spixy avatar May 05 '22 11:05 spixy