Hi, based on the docs, MultiColumn headers are not supported with FrozenColumns.
So, to overcome this, I created each column as a templated column and wanted to place the "MultiColumn" in the top row of the table as shown below. This kind of works as long as this appears within the boundries of the radGrid, however, as I scroll horizontally to the left, "Company Data" appears outside the grid. I understand why due to the absolute + z-index style, but I thought there may be a way to have it layered to avoid this. (See screen shots for example)
<telerik:GridTemplateColumn UniqueName="Column2" SortExpression="Column2" >
<HeaderTemplate>
<table>
<tr>
<td>
<span style="position:absolute; margin-left:-10px; z-index:5">Company Data</span>
</td>
</tr>
<tr>
<td>
Column 2
</td>
</tr>
</table>
</HeaderTemplate>
....
So, to overcome this, I created each column as a templated column and wanted to place the "MultiColumn" in the top row of the table as shown below. This kind of works as long as this appears within the boundries of the radGrid, however, as I scroll horizontally to the left, "Company Data" appears outside the grid. I understand why due to the absolute + z-index style, but I thought there may be a way to have it layered to avoid this. (See screen shots for example)
<telerik:GridTemplateColumn UniqueName="Column2" SortExpression="Column2" >
<HeaderTemplate>
<table>
<tr>
<td>
<span style="position:absolute; margin-left:-10px; z-index:5">Company Data</span>
</td>
</tr>
<tr>
<td>
Column 2
</td>
</tr>
</table>
</HeaderTemplate>
....