-
Notifications
You must be signed in to change notification settings - Fork 6
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
Table Reading with screenreaders #18
Comments
I think this one is expected default behavior for JAWS and NVDA. By default, the column header is read so that you know which column the information relates to. From this tables tutorial:
There should be a setting in JAWS to decrease the verbosity when traversing tables. In NVDA, there are a number of relevant settings under Document Formatting, but I don't have access to JAWS to find if there is such an option. From a notebook generation perspective, however, the headings are generated with the correct and elements. |
Re-reading the issue, I missed that it's incorrectly reading the column number, rather than the full column name, which is far more useful. I can confirm that on our test page, NVDA reads the full column name. I'll see if I can find anything on this, though the table seems correctly formatted, at least. |
OK, just dug into this a little. One possibility for the improper reading could be a missing <table id="table140630505372920" class="table-striped table-bordered table-condensed">
<thead>
<tr>
<th>obsID</th>
<th>obs_collection</th>x
...
</tr>
</thead>
</table> With the included scope attribute, it might look like this: <table id="table140630505372920" class="table-striped table-bordered table-condensed">
<thead>
<tr>
<th scope="col">obsID</th>
<th scope="col">obs_collection</th>
...
</tr>
</thead>
</table> I don't currently have access to JAWS, so I can't test this possible solution, though maybe I should look into getting a license. |
missing there might be some cases where it is safe to infer a remediation for tables, but in most cases there is too much ambiguity. we could provide user warnings when certain best practices are violated. |
Problem and context
As a user navigates through table cells with a screen reader, it reads first "the_data_in_the_cell" followed by the "column_#"
The column number does not give context of what the column title is, and is not useful information.
This was discovered with JAWS
Possible solutions
After reading the cell content, the screen reader will read out the column title, not the column #
Note from test:
The summary command should be at the from (aria command) in summary for table
(This may be relevant to a different issue..?)
Acceptance criteria
The user will be informed of the column header while navigating through cells so they do not have to leave the cell to read the header and then struggle to find their place in the table again.
Tasks to complete
The text was updated successfully, but these errors were encountered: