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
Drag events inside a grid decorator are not firing.
Investigation showed that the focus handling of the grid was moving the focus between the container and textarea, probably making chrome unhappy and causing the drag event to not work.
Workaround is to add tabindex='0' to any element in the decorator that needs to be draggable so it can receive focus.
The text was updated successfully, but these errors were encountered:
hmm this seems tricky, would love to get a simple repro code snippet if possible, if not we can just discuss more so i know which drag event isn't working (dragstart, or just drag etc)
Drag events inside a grid decorator are not firing.
Investigation showed that the focus handling of the grid was moving the focus between the container and textarea, probably making chrome unhappy and causing the drag event to not work.
Workaround is to add
tabindex='0'
to any element in the decorator that needs to be draggable so it can receive focus.The text was updated successfully, but these errors were encountered: