Replies: 1 comment 4 replies
-
We are currently working on Edit Mode support. See comment in, Are inputs not allowed in GridListItem?, for more information. Let us know if that will solve your issue. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to manage keyboard control within an AG Grid cell editor UI.
My cell editor contains multiple
ComboBox
s that can be interacted with, but in order to interact with them via keyboard I need to suppress some events from being interpreted by the grid as ending cell edit mode (Enter) or navigating to a new cell (Tab), because I want to use Enter to select an option from aComboBox
, and I want Tab to select an option and tab to the nextComboBox
.https://www.w3.org/WAI/ARIA/apg/patterns/grid/#keyboardinteraction-settingfocusandnavigatinginsidecells
https://www.ag-grid.com/react-data-grid/cell-editors/#option-1---stop-propagation
ComboBox
doesn't seem to expose any events onSelection (or otherwise), I suppose because the selection event could be a click event on theListboxItem
or a keyboard event on theInput
?Is there a way to do something like in "Option 1" described above in the AG Grid docs:
Beta Was this translation helpful? Give feedback.
All reactions