Skip to content
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

Keyboard module - dgrid 0.3 #1311

Closed
matejlednar opened this issue Sep 12, 2016 · 1 comment · Fixed by #1465
Closed

Keyboard module - dgrid 0.3 #1311

matejlednar opened this issue Sep 12, 2016 · 1 comment · Fixed by #1465

Comments

@matejlednar
Copy link

matejlednar commented Sep 12, 2016

If I have dijit/form/Select as content of the row, I am losing focus. I am not able to open popup menu over label, only down icon is working.

postCreate() - handleEvents() is problem

current statement
return target.type && (!delegatingInputTypes[target.type] || event.keyCode == 32);

my suggestion
var DijitFormSelect = query(event.target).parents(".dijitSelect")[0];
return (target.type && (!delegatingInputTypes[target.type] || event.keyCode == 32) || DijitFormSelect);

The row structure is below.

image

@msssk
Copy link
Contributor

msssk commented May 14, 2020

I'm not sure exactly what scenario you're describing, but in investigating I did observe a bug in using dijit/form/Select with editOn. That issue is fixed in #1465. If you continue to experience problems please file an issue with a test case so we can investigate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants