The columns in my grid don't seem to be resizing the way (I think) they should. The column I'm resizing will get bigger or smaller, but instead of the other columns adjusting their widths, they just "move" according to the column being resized. For instance, if I make a column (let's say column 2) smaller (i.e. dragging right to left), all of the columns to the right (let's say columns 3 and 4) will get smaller. It's almost like there is an invisible column 5 that's being resized along with column 2, instead of columns 3 and 4 adjusting themselves. Conversely, if I make column 2 bigger it will just push the other columns "out", causing the grid to render a horizontal scroll bar. Here is a sample of some relevant code:
Any help appreciated!
<telerik:RadGrid runat=
"server"
ID=
"RadGrid1"
EnableEmbeddedSkins=
"False"
Skin=
"Default"
Width=
"100%"
AutoGenerateColumns=
"False"
OnNeedDataSource=
"RadGrid1_NeedDataSource"
AllowMultiRowSelection=
"True"
AllowFilteringByColumn=
"True"
>
<HeaderStyle HorizontalAlign=
"Left"
></HeaderStyle>
<ItemStyle HorizontalAlign=
"Left"
></ItemStyle>
<AlternatingItemStyle HorizontalAlign=
"Left"
></AlternatingItemStyle>
<ClientSettings AllowColumnsReorder=
"False"
EnablePostBackOnRowClick=
"False"
>
<Scrolling UseStaticHeaders=
"True"
AllowScroll=
"True"
ScrollHeight=
"500px"
/>
<Resizing AllowColumnResize=
"True"
EnableRealTimeResize=
"False"
ClipCellContentOnResize=
"True"
/>
<Selecting AllowRowSelect=
"True"
/>
</ClientSettings>
<MasterTableView AllowPaging=
"True"
AllowSorting=
"True"
PageSize=
"500"
TableLayout=
"Fixed"
Width=
"100%"
<Columns>
<telerik:GridClientSelectColumn UniqueName=
"cbColumn"
HeaderStyle-Width=
"3%"
HeaderStyle-HorizontalAlign=
"Left"
ItemStyle-HorizontalAlign=
"Left"
/>
<telerik:GridBoundColumn UniqueName=
"ID"
Visible=
"False"
DataField=
"ID"
/>
<telerik:GridBoundColumn UniqueName=
"ConfNo"
HeaderText=
"Conf No"
DataField=
"ConfNo"
HeaderStyle-Width=
"20%"
FilterControlWidth=
"65%"
/>
<telerik:GridBoundColumn UniqueName=
"Set No"
HeaderText=
"Set No"
DataField=
"SetNo"
HeaderStyle-Width=
"20%"
FilterControlWidth=
"65%"
/>
<telerik:GridBoundColumn UniqueName=
"Name"
HeaderText=
"Name"
DataField=
"Name"
HeaderStyle-Width=
"57%"
FilterControlWidth=
"85%"
/>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Any help appreciated!