We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The table implementation is missing a few other ARIA roles:
role="columnheader"
id
aria-sort
role="gridcell"
aria-describedby
ARIA documentation: columnheader and gridcell.
The text was updated successfully, but these errors were encountered:
Fix aria roles for table headers and cells
bda5492
Fixes bvaughn#680. - Add id, aria role, and aria sort to table column headers - Add aria describedby and role to table cells
3801ce3
No branches or pull requests
The table implementation is missing a few other ARIA roles:
role="columnheader"
, anid
to associate the column's cells, andaria-sort
if the column is sortedrole="gridcell"
andaria-describedby
that points to the associated column headerARIA documentation: columnheader and gridcell.
The text was updated successfully, but these errors were encountered: