-
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
outsideClickDeselects : false disables all focus in other inputs outside the table #408
Comments
Thanks, I am able to reproduce it. I will fix this when possible. I creted a JSFiddle from the code that you provided: http://jsfiddle.net/warpech/84Uch/1/ |
Actually this issue is a duplicate of #401. I will treat this as a +1 :) |
This should be now fixed in 0.8.15, thanks for the report! |
Hi, focus on select tags still seems to disabled, so it should probably also be added? if (target.nodeName.toLowerCase() === 'input' || target.nodeName.toLowerCase() === 'textarea' || target.nodeName.toLowerCase() === 'select') |
Hi, @warpech In some cases it is needed to keep selection, because you need to know which row was selected for example. In my cases I commented lines for if clause when May be add one more option addition for |
This issue should now be fixed in Handsontable 0.8.16. We changed the logic behind |
works fine!!!, thanks!!! |
@warpech thanks a lot!!! Works fine! |
The following doesn't work for me on firefox 22.0 but on chrome it works. When a cell is selected you can't change the selected value in the drop down menu. |
I confirm! We will try to fix this as soon as possible. |
when outsideClickDeselects is set to false, all inputs outside the container never gain the focus. Try this code:
The text was updated successfully, but these errors were encountered: