-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Improve accessibility #130
Comments
Would you like to submit a PR for this?
…On Thu, Mar 16, 2017 at 6:41 AM Denis Washington ***@***.***> wrote:
Currently, the default react-table components output just nested <div>
tags, which means that screen readers and other assistive technologies
don't recognize that the markup actually represents a table. Thus, the
different parts should have WAI-ARIA <https://www.w3.org/TR/wai-aria> role
attributes, specifically [grid](https://www.w3.org/TR/wai-aria/roles#grid)
and its child roles, to expose this information.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#130>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/AFUmCemON3zJhnuHhZW5sciQvIB_H9jbks5rmS4PgaJpZM4MfPpd>
.
|
I would love to have more aria compliance, so anyone who would like to work on this, let me know. |
cdtinney
added a commit
to cdtinney/react-table
that referenced
this issue
May 25, 2017
…ake priority over the default showPagination prop. It is set to a default of 'true'. It is demonstrated in a 'ShowPaginationNoData' story. Relates to TanStack#130, TanStack#248.
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, the default react-table components output just nested
<div>
tags, which means that screen readers and other assistive technologies don't recognize that the markup actually represents a table. Thus, the different parts should have WAI-ARIArole
attributes to expose this information. Relevant here is the grid role and its accompanying roles (row
,gridcell
etc.).The text was updated successfully, but these errors were encountered: