-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix: do not stop ignored dragleave events in grid #8500
Conversation
|
@tomivirkki could we also pick this to 24.4 ? |
@mshabarov cherry-picked here #8503 |
This ticket/PR has been released with Vaadin 24.7.0.alpha5 and is also targeting the upcoming stable 24.7.0 version. |
Hi @tomivirkki and @tomivirkki, when i performed cherry-pick to this commit to 23.5, i have encountered the following issue. Can you take a look and pick it manually?
Otherwise, please use 'git cherry-pick --skip' |
This was backported manually to 23.5 via #8640 |
Description
Grid currently stops the propagation of all native "dragleave" events which causes the issue. The propagation of "dragleave" event should only be stopped if the grid has a
dropMode
, in which case corresponding "dragover" and "dragenter" events are also processed by the grid dnd logicFixes #8476
Type of change