You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating an app that consists of multiple sortable lists of different elements.
When user begins dragging I need to figure out which element is being dragged, and prohibit dropping it into some of containers by using shouldAcceptDrop.
But the problem is that shouldAcceptDrop is being called beforeonDragStart. So I cannot dynamicly change behavior of containers.
In my opinion shouldAcceptDrop should be called afteronDragStart.
What do you think? :)
The text was updated successfully, but these errors were encountered:
I'm creating an app that consists of multiple sortable lists of different elements.
When user begins dragging I need to figure out which element is being dragged, and prohibit dropping it into some of containers by using
shouldAcceptDrop
.But the problem is that
shouldAcceptDrop
is being called beforeonDragStart
. So I cannot dynamicly change behavior of containers.In my opinion
shouldAcceptDrop
should be called afteronDragStart
.What do you think? :)
The text was updated successfully, but these errors were encountered: