4 Answers, 1 is accepted
0
Hi Mike,
You can set ClientSettings.Resizing.AllowRowResize to false.
Greetings,
Vlad
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
You can set ClientSettings.Resizing.AllowRowResize to false.
Greetings,
Vlad
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Mike
Top achievements
Rank 1
answered on 01 Jul 2008, 12:27 PM
Vlad,
Thanks, that worked! What is interesting is that I am still able to resize the columns :)
Thanks, that worked! What is interesting is that I am still able to resize the columns :)
0
Accepted
Princy
Top achievements
Rank 2
answered on 01 Jul 2008, 12:42 PM
Hi Mike,
Have you set the column resize property to true? Try setting it to false as shown below.
ASPX:
| <ClientSettings> |
| <Resizing AllowColumnResize="false" /> |
| </ClientSettings> |
Thanks
Princy
0
Mike
Top achievements
Rank 1
answered on 01 Jul 2008, 12:49 PM
Yep, you're right I changed AllowRowResze="False" d'oh!
This setting has removed the first column which was blank.
| <ClientSettings AllowColumnsReorder="true" AllowDragToGroup="True" ReorderColumnsOnClient="true" AllowRowHide="true"> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True"></Scrolling> |
| <Resizing AllowColumnResize="True" AllowRowResize="False" EnableRealTimeResize="True" ResizeGridOnColumnResize="True" ></Resizing> |
| <Selecting AllowRowSelect="True"></Selecting> |
| </ClientSettings> |
