-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Row/Cell) Selection not properly working on touch + mouse devices #757
Comments
Just to check, which version of dgrid are you trying this with? We actually heard a similar report recently and have introduced a fix in master which will be in the upcoming 0.3.12 release. You might want to pull the latest and see if that fixes it. |
Version 0.3.11 |
My colleague said that the latest changes didn't fix it. But I guess the problem is with this code snippet:
Because the has("touch") is true it runs into the "if-part" and i guess the touchUtil can't handle mouse clicks. |
Hello! This bug is affecting quite a few users in our application using dgrid. Can we put a milestone in this or does someone have a patch for this? Thank you very much! |
This is something we are hoping to address sometime this month for dgrid 0.3.14. #844 takes one approach at resolving it (and a few other touch+mouse issues) but its feature detect can result in some false negatives and positives so I plan to play with some other ideas. |
When both touch and mouse are available (in this case, Chrome on a Windows 8 laptop with touchscreen), it is not possible to select an row with the mouse. Doing the same using touch it's working.
I have a listener for the "dgrid-select" and "dgrid-deselect" event, but it seems those events are not fired when using the mouse.
The text was updated successfully, but these errors were encountered: