-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
SelectEditor dropdown hidden #1176
Comments
Please, prepare a jsFiddle |
Here it is. http://jsfiddle.net/hU6Kz/2467/ Column B is using SelectEditor. As you can see, the dropdown is not visible while working with arrow keys. |
Definitely, it's a bug. |
If you can provide hints what I should looking for, I can try to work up a solution. I already spent time on this without luck. Maybe the dropdown is either hidden behind the table or the click on the dropdown is intercepted before reaching the select element. |
I can see the |
That was my guess too, but I don't know how to follow the event object that doesn't reach the DOM element ... and I think it should generate from it and then bubbling up. How can be intercepted before reaching a child element? In any case, I don't know how i can intercept the click event and "follow" it. Do you have any "tutorial" on this? |
we've found the preventDefault() blocking the display. instance.rootElement.on('mousedown.handsontable', function (event) { we've not checked a lot the purpose of the event so for our own purpose we've added a test : if the event target is a select, do not prevent. a better solution may(must) exist. |
I have recently fixed this issue (81fc12c). My fix will be released in version 0.10.0 (final) |
This should be fixed in 0.10.0. Could you please recheck? |
In 10.0.beta3 the SelectEditor is working only using arrow keys. The select dropdown is not displayed.
If this is a feature, can you please hint me about what i should extend?
The text was updated successfully, but these errors were encountered: