when I upgraded to Android 5.x it looks like Talkback will no longer read the data table headers in hybrid app. Anybody know if this is broken?
I am using Cordova and jQuery Mobile to create my app and below is the code that I am using:
<div id="home" data-role="page" data-title="Home">
<div data-role="content">
<div date-role="header">
<h1>Data Table 1</h1>
</div>
<div role="main" class="ui-content">
<table data-role="table" id="my-table" data-mode="reflow">
<tr>
<th id="c1">Service Branch</th>
<th id="c2">Percentage of Women</th>
</tr>
<tr>
<th id="r1">Army</th>
<td headers="r6 c2">13.4%</td>
</tr>
<tr>
<th id="r2">Navy</th>
<td headers="r2 c2">15.9%</td>
</tr>
<tr>
<th id="r3">Marine Corps</th>
<td headers="r3 c2">6.6%</td>
</tr>
<tr>
<th id="r4">Air Force</th>
<td headers="r4 c2">19.2%</td>
</tr>
<tr>
<th id="r5">Coast Guard</th>
<td headers="r5 c2">13.4%</td>
</tr>
<tr>
<th id="r6">National Guard & Reserves</th>
<td headers="r6 c2">17.9%</td>
</tr>
</table>
</div>
</div>
</div>