This cannot be this difficult. When I set the AllowColumnResize = 'true' the grid still won't allow me to resize the column header.
| <telerik:RadGrid ID="MyClientsViewGrid" runat="server" |
| AllowAutomaticDeletes="True" AllowAutomaticInserts="True" |
| AllowAutomaticUpdates="True" AllowSorting="True" DataSourceID="SqlDataSource1" |
| GridLines="None" Skin="Web20" ShowFooter="True"> |
| <ClientSettings AllowColumnsReorder="true" ReorderColumnsOnClient="true"> |
| <Resizing AllowRowResize="True" EnableRealTimeResize="True" ResizeGridOnColumnResize="True" AllowColumnResize="True"></Resizing> |
| </ClientSettings> |
| <HeaderContextMenu Skin="Web20"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </HeaderContextMenu> |
| <MasterTableView AutoGenerateColumns="False" DataKeyNames="ListValueID" DataSourceID="SqlDataSource1" CommandItemDisplay="TopAndBottom" > |
| <Columns> |
| ... |
| </Columns> |
| </MasterTableView> |
| <FilterMenu Skin="Web20"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </FilterMenu> |
| </telerik:RadGrid> |
I found this article but it isn't allowing me to resize (The icon doesn't change into the Resizer)
http://www.telerik.com/help/aspnet-ajax/grdresizingcolumns.html
