Hello,
I am trying to develop a dynamic Rad Grid in ASP.NET 2.0 C# for IE6. Because of how I am receiving the data, I bind to a "dummy" template table that has the correct number of columns and rows, but no actual data. Then, in the back end, I populate each cell with the correct data. My issue is occuring when I am trying to freeze four columns. It seems that this is because the four columns I am trying to freeze all have different widths. When I set frozenColumnCount = 4, the grid will no longer scroll horizontally, even though there are more columns. I am wondering if this a known issue, or I am doing something incorrectly. Thanks for the help.
Jason
I am trying to develop a dynamic Rad Grid in ASP.NET 2.0 C# for IE6. Because of how I am receiving the data, I bind to a "dummy" template table that has the correct number of columns and rows, but no actual data. Then, in the back end, I populate each cell with the correct data. My issue is occuring when I am trying to freeze four columns. It seems that this is because the four columns I am trying to freeze all have different widths. When I set frozenColumnCount = 4, the grid will no longer scroll horizontally, even though there are more columns. I am wondering if this a known issue, or I am doing something incorrectly. Thanks for the help.
Jason
<Rad:RadGrid ID="gridRADIndicatorSummary" |
runat="server" |
AutoGenerateColumns="true" |
Skin="Office2007" |
OnItemDataBound="gridRADIndicatorSummary_OnItemDataBound" |
ShowFooter="false" |
ShowGroupPanel="false" |
ShowDesignTimeSmartTagMessage="false" |
ShowStatusBar="false"> |
<ClientSettings> |
<Scrolling AllowScroll="True" |
UseStaticHeaders="true" |
FrozenColumnsCount="4"> |
</Scrolling> |
</ClientSettings> |
<MasterTableView TableLayout="Auto"/> |
</Rad:RadGrid> |