Reputation: 385
I have an application whereby several lists can appear stacked on top of each other. The list items can be swapped between lists via drag/drop. When I drop a list item on a list that is overlying another list I would like the topmost list only to handle the drop event.
Currently my problem is that all event handlers fire regardless of my use of e.stopPropagation
, e.preventDefault
or return false
.
Any guidelines greatly appreciated
Upvotes: 1
Views: 1599
Reputation: 8121
Looks like there was a bug filed about this very thing, there is some code provided by a participant which may be able to help you with a workaround.
Upvotes: 0