You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DataTable component uses the grid ARIA role, but doesn't implement the keyboard navigation and focus patterns described at https://www.w3.org/WAI/ARIA/apg/patterns/grid/. In particular:
It uses the same "1D" navigation as other list-like components such as menus or selects, instead of 2D navigation where left/right moves between cells and up/down moves between rows.
It sets focus only on the rows, not individual cells
When pressing up on the first row or down on the last row, navigation wraps, whereas it shouldn't.
The text was updated successfully, but these errors were encountered:
The
DataTable
component uses thegrid
ARIA role, but doesn't implement the keyboard navigation and focus patterns described at https://www.w3.org/WAI/ARIA/apg/patterns/grid/. In particular:The text was updated successfully, but these errors were encountered: