Hi,
How do I set the Header Text and the Sorted Arrow in the same row rather than 2 row (see attached screenshot for 2row) in the header? It should also stay in 1 row even the column is dragged to a smaller width.
Thanks in advance.
How do I set the Header Text and the Sorted Arrow in the same row rather than 2 row (see attached screenshot for 2row) in the header? It should also stay in 1 row even the column is dragged to a smaller width.
<telerik:RadGrid ID="GridDocument" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" AllowMultiRowSelection="true" Width="100%" Height="345px" OnPageIndexChanged="GridDocument_PageIndexChanged" OnSortCommand="GridDocument_SortCommand"> <PagerStyle AlwaysVisible="true" /> <MasterTableView DataKeyNames="ID" ClientDataKeyNames="ID" TableLayout="Fixed"> <Columns> ... <telerik:GridBoundColumn DataField="Version" HeaderText="<nobr>Version</nobr>" UniqueName="Version" DataFormatString="<nobr>{0}</nobr>" SortExpression="Version"> <HeaderStyle Width="70px" /> <ItemStyle Width="70px" /> </telerik:GridBoundColumn> ... </Columns> </MasterTableView> <ClientSettings> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> <Resizing AllowColumnResize="True" EnableRealTimeResize="true" ClipCellContentOnResize="true"></Resizing> </ClientSettings> </telerik:RadGrid>Thanks in advance.