[nfbcs] Laying out Tables

Stanzel, Susan - FSA, Kansas City, MO susan.stanzel at kcc.usda.gov
Tue Jul 31 18:23:51 UTC 2012


Robert,

Thanks a million! Is there a suggestion on the best method to suggest?

Susie Stanzel

-----Original Message-----
From: nfbcs-bounces at nfbnet.org [mailto:nfbcs-bounces at nfbnet.org] On Behalf Of Jaquiss, Robert
Sent: Tuesday, July 31, 2012 12:33 PM
To: NFB in Computer Science Mailing List
Subject: Re: [nfbcs] Laying out Tables

Hello Susie et al:

     Below my signature is code that shows three different tables. The first table is a variant of what Peter posted earlier. When JAWS navigates to thie first table using the t command, it will read the name of the table and the first column. If a user is using arrow keys to navigate, the table name will be read as a level 2 heading. When JAWS navigates to the second table, it will again read the name. Users will hear the table name if arrow keys are used for navigation.
The third table doesn't use a caption and is preceeded by a heading. Note that the thead elements are also replaced with a tr element. JAWS still recognizes the column headings. Hope this is useful. The html source is also attached.

Regards,
Robert


Robert Jaquiss
Access Technology Specialist
National Federation of the Blind Jernigan Institute
200 E. Wells Street at Jernigan Place
Baltimore, MD 21230
Phone: (410) 659-9314, Ext.2422
Email: rjaquiss at nfb.org

<html>
<head><title>Table demonstration</title></head> <body> <h1>Start of demonstration</h1> <p>This demonstrates a table caption and headings.</p> <br /> <table> <caption><h2>Products</h2></caption>
<thead><th>Price</th><th>Item</th></thead>
<tbody>
<tr><td>$735.00</td><td>New Perkins Brailler</td></tr> <tr><td>$335.00</td><td>Used Perkins Brailler</td></tr> </tbody> </table> <br /> <p>The second table.</p> <h2>The second table</h2> <table> <caption>Products</caption> <thead><th>Price</th><th>Item</th></thead>
<tbody>
<tr><td>$4,500.00</td><td>Juliet Pro 60</td></tr> <tr><td>$4,000.00</td><td>Juliet</td></tr>
</tbody>
</table>
<br />
<p>A third table.</p>
<h2>The third table</h2>
<table>
<tr><th>Price</th><th>Item</th></tr>
<tbody>
<tr><td>$180,000.00</td><td>New house</td></tr> <tr><td>$4,000.00</td><td>Run down house</td></tr> </tbody> </table> <p>End of demonstration.</p> </body></html>




This electronic message contains information generated by the USDA solely for the intended recipients. Any unauthorized interception of this message or the use or disclosure of the information it contains may violate the law and subject the violator to civil or criminal penalties. If you believe you have received this message in error, please notify the sender and delete the email immediately.





More information about the NFBCS mailing list