TS 6.5
When inserting a column to an existing table in VF, the table header has a <td> tag instead of a <th> tag inserted.
EG
<table>
<thead>
<tr>
<th>existing header column</th>
<td>newly added header by VF - using td instead</td>
</tr>
</thead>
<tbody>
<tr>
<td>data</td>
<td>data</td>
</tr>
</tbody>
</table>
Are we able to make VFE use th tags when inside a thead element? I haven't been able tofind any information about this.
Thanks
John Cuiuli