guys, i've got a weird one. when i use this for frozen columns in the mark up, it works perfectly.
<ClientSettings EnableRowHoverStyle="true" >
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" FrozenColumnsCount="6">
</Scrolling>
however when i use this in the code behind - on items databind, i get two headers on the grid. or it actually looks like a grid in a grid.
very strange. anyway i can use this in the code behind where it works perfectly?
InventoriesRadGrid.ClientSettings.Scrolling.AllowScroll = true;
InventoriesRadGrid.ClientSettings.Scrolling.UseStaticHeaders = true;
InventoriesRadGrid.ClientSettings.Scrolling.SaveScrollPosition = true;
InventoriesRadGrid.ClientSettings.Scrolling.FrozenColumnsCount = 6;
<ClientSettings EnableRowHoverStyle="true" >
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" FrozenColumnsCount="6">
</Scrolling>
however when i use this in the code behind - on items databind, i get two headers on the grid. or it actually looks like a grid in a grid.
very strange. anyway i can use this in the code behind where it works perfectly?
InventoriesRadGrid.ClientSettings.Scrolling.AllowScroll = true;
InventoriesRadGrid.ClientSettings.Scrolling.UseStaticHeaders = true;
InventoriesRadGrid.ClientSettings.Scrolling.SaveScrollPosition = true;
InventoriesRadGrid.ClientSettings.Scrolling.FrozenColumnsCount = 6;