I have a RadGrid with a GridDateTimeColumn, with a DatePicker filter. The From & To inputs with calendar popup appear in the filter row. I would like to have this split across 2 lines as it makes the column very wide - and it's a waste of space. I have tried setting the FilterControlWidth and that just changes the size of the input text box. Here is the aspx code for the column and a pic of the column:
<telerik:GridDateTimeColumn DataField="CreateDate" SortExpression="create_dt" UniqueName="CreateDate"
PickerType="DatePicker" DataType="System.DateTime" DataFormatString="{0:MMM d, yyyy}"
EnableRangeFiltering="true" FilterDateFormat="MMM d, yyyy"
HeaderStyle-Wrap="true" FilterControlWidth="120px">
<HeaderStyle Width="100px" Wrap="true"></HeaderStyle>
</telerik:GridDateTimeColumn>
How do I go about getting the filter row to wrap or split across 2 lines?
Thanks
Janice