I have a custom column header template for my RadGrid. Does anyone know how to make the header look like the native column headers? This is what my header template looks like:
<Columns>
<telerik:GridTemplateColumn>
<HeaderTemplate>
<center>
<table id="ColumnSortHeader" cellspacing="1" cellpadding="1" border="0">
<tr align="center">
<td>
<a href="#">Price Low to High</a>
</td>
<td>
<a href="#">Price High to Low</a>
</td>
<td>
<a href="#">Name A-Z</a>
</td>
<td>
<a href="#">Name Z-A</a>
</td>
</tr>
</table>
</center>
</HeaderTemplate>
</telerik:GridTemplateColumn>
</Columns>
What I wanted to do is make the cells look like the skin set for the RadGrid. Is this possible?
<Columns>
<telerik:GridTemplateColumn>
<HeaderTemplate>
<center>
<table id="ColumnSortHeader" cellspacing="1" cellpadding="1" border="0">
<tr align="center">
<td>
<a href="#">Price Low to High</a>
</td>
<td>
<a href="#">Price High to Low</a>
</td>
<td>
<a href="#">Name A-Z</a>
</td>
<td>
<a href="#">Name Z-A</a>
</td>
</tr>
</table>
</center>
</HeaderTemplate>
</telerik:GridTemplateColumn>
</Columns>
What I wanted to do is make the cells look like the skin set for the RadGrid. Is this possible?