I'm using the item template to customize the entire grid row.
Example...
<ItemTemplate >
<table width="100%">
<tr>
<td style="border-style:none" ><%# Eval("StdntNm")%></td>
<td style="border-style:none" ><%# Eval("SSID")%></td>
<td style="border-style:none" ><%# Eval("AcptdDt")%></td>
</tr>
<tr>
<td style="border-style:none" ><%# Eval("BirthFthrFrstNm")%></td>
<td style="border-style:none" ><%# Eval("BirthMthrFrstNm")%></td>
</tr>
</table>
Is there a way to do the same to the grid header? It looks like it's possible to do with a group header item...but I don't see anything similar for the normal mastertableview header.
Example...
<ItemTemplate >
<table width="100%">
<tr>
<td style="border-style:none" ><%# Eval("StdntNm")%></td>
<td style="border-style:none" ><%# Eval("SSID")%></td>
<td style="border-style:none" ><%# Eval("AcptdDt")%></td>
</tr>
<tr>
<td style="border-style:none" ><%# Eval("BirthFthrFrstNm")%></td>
<td style="border-style:none" ><%# Eval("BirthMthrFrstNm")%></td>
</tr>
</table>
Is there a way to do the same to the grid header? It looks like it's possible to do with a group header item...but I don't see anything similar for the normal mastertableview header.