Our requirement is to have a grid with columns with predefined sized, have a static header, column resize enabled, row resize disabled. I tried setting the properties to achieve this requirement, to some extent i was successful. One column has long text with spaces when the user resizes the column the content is taken to next line even if i set ClipCellContentOnResize to be true. This actually increases the row size which we do not want. What we want is to have a fixed row size and the columns should start clipping as soon as the resizer crosses the text. The text should not be taken to the next row.
Following is my grid configuration :<telerik:RadGrid ID="grid1" OnItemDataBound="OnItemDataBound" Skin="Transparent"
runat="server" GridLines="Vertical">
<MasterTableView>
</MasterTableView>
<HeaderStyle Font-Bold="False" Font-Size="Small" />
<ClientSettings EnableAlternatingItems="false" EnableRowHoverStyle="true">
<ClientEvents OnRowClick="RowClick" OnRowDataBound="RowBound" OnColumnCreated="ColumnCreated" />
<Selecting AllowRowSelect="True" />
<Resizing AllowColumnResize="true" EnableRealTimeResize="false" ShowRowIndicatorColumn="false"
ResizeGridOnColumnResize="false" ClipCellContentOnResize="true" AllowResizeToFit="false" />
<Scrolling AllowScroll="true" UseStaticHeaders="true" />
</ClientSettings>
</telerik:RadGrid>
Please let me know if i am missing anything.