-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
[DataGrid] Accessibility keyboard behaviour on a read-only selected cell doesn't take 'enter' to fire onCellClick. #2001
Comments
@cbazza We need more details. Could you expand on the problem you are trying to solve? Do you have a codesandbox or else to illustrate it? Maybe you are looking for the |
It's basically the accessibility behaviour when you tab and move the focus around with the keyboard. Once it gets to the table, it highlights the first header and you can use the arrows to move the focus box around the table. Just the very basic table with no editable cells at all. Table has onCellClick setup so that once user clicks on cell is does the callback. All I want is that exact same behaviour if user uses keyboard to navigate to cell and press 'enter', it should call onCellClick. |
You can use |
From the documentation it doesn't look like |
@cbazza This is correct, It looks like you have hit the frustration 1. in of #1826. |
When using keyboard navigation there is no way to have the same behaviour as clicking on the cell. I need Enter to fire
onCellClick
.The text was updated successfully, but these errors were encountered: