Hello, I am trying to make my grid be able to client side column resize without making the grid larger.....
In essence, when the user makes one grid column larger, the rest get smaller to fit the screen. I know it is possible because I ran across one of your examples that did it, however I copied the settings in the clientside section and it didn't work for me....the grid width still grew to larger than my screen width. Here is my grid:
What I am doing wrong?
Thanks...
UPDATE - I had some CSS styles that were screwing up the grid in the header of my page....the grid now correctly stays within the desired area but presents a scroll bar at the bottom to view data that gets pushed out of the screen.....which is acceptable, but I would still like to know how to make the other columns resize automatically.
In essence, when the user makes one grid column larger, the rest get smaller to fit the screen. I know it is possible because I ran across one of your examples that did it, however I copied the settings in the clientside section and it didn't work for me....the grid width still grew to larger than my screen width. Here is my grid:
<telerik:RadGrid ID="RadGrid1" runat="server" Skin="Sunset" AllowSorting="true" ShowFooter="true"> |
<MasterTableView Width="100%"> |
<RowIndicatorColumn> |
<HeaderStyle Width="20px"></HeaderStyle> |
</RowIndicatorColumn> |
<ExpandCollapseColumn> |
<HeaderStyle Width="20px"></HeaderStyle> |
</ExpandCollapseColumn> |
</MasterTableView> |
<ClientSettings AllowColumnHide="true"> |
<Scrolling AllowScroll="true" UseStaticHeaders="true" /> |
<Resizing AllowColumnResize="true" ClipCellContentOnResize="true" /> |
</ClientSettings> |
</telerik:RadGrid> |
Thanks...
UPDATE - I had some CSS styles that were screwing up the grid in the header of my page....the grid now correctly stays within the desired area but presents a scroll bar at the bottom to view data that gets pushed out of the screen.....which is acceptable, but I would still like to know how to make the other columns resize automatically.