-
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
OnDemandList: renderRow will make you lose the focus on the row #496
Comments
edhager
added a commit
to edhager/dgrid
that referenced
this issue
Jun 28, 2013
Also added code to clean up selection settings on blur. This was not being done before. I needed it for my update and it seems like a good thing to have in general.
edhager
added a commit
to edhager/dgrid
that referenced
this issue
Jun 28, 2013
Also added code to clean up focus settings on blur. This was not being done before. I needed it for my update and it seems like a good thing to have in general.
edhager
added a commit
to edhager/dgrid
that referenced
this issue
Jun 28, 2013
Also added code to clean up focus settings on blur. This was not being done before. I needed it for my update and it seems like a good thing to have in general.
edhager
added a commit
to edhager/dgrid
that referenced
this issue
Jun 28, 2013
Also added code to clean up focus settings on blur. This was not being done before. I needed it for my update and it seems like a good thing to have in general.
edhager
added a commit
to edhager/dgrid
that referenced
this issue
Jul 19, 2013
… separate the management of the focus and the tab stop. The focused node and tab stop node should always be the same node. Sometimes the tab stop node will not have focus.
edhager
added a commit
to edhager/dgrid
that referenced
this issue
Jul 19, 2013
…t the tab stop and the focus to a different row when the row being removed has focus.
Hi, Thank you for fixing this! Thanks a million, Merc. |
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
If
You lose the focus on that specific row. This is particularly annoying if you have an application that has live data that updates all the time, and you want the user to be able to use the keyboard to navigate this live data (it's not really going to happen).
I tried to provide a solution, but my Dojo skills suck too much -- especially when you take Dijit away from me. I actually couldn't even find a spot, in the code, where the observer triggers the rendering of the row (!).
However, the idea is:
I think losing the focus is going to happen no matter what because in renderRow() the whole row's DOM is replaced. So, any kind of focus is lost.
But, I might well be missing something...
Merc.
The text was updated successfully, but these errors were encountered: