This is a migrated thread and some comments may be shown as answers.

DateRangeFilter is in single line

4 Answers 35 Views
Filter
This is a migrated thread and some comments may be shown as answers.
Ramesh
Top achievements
Rank 1
Ramesh asked on 21 Apr 2015, 10:36 AM

Hi Team,

I am new to telerik controls and using Radgrid in my application. I have a DataRangefilter which shows "From" date and "To" date in a single line. So the column become big in size!.(I have  more than 20 date columns!) . I am using latest telerik demo DLLs for my POC. In order to  achieve this i have used EnableRangeFiltering ="true" in aspx page.

 

I heard older DLL has this feature ! 

Is there any way to get the From and To date in multiple lines in the latest version, which can reduce my column size. 

 

Regards

Ramesh.

4 Answers, 1 is accepted

Sort by
0
Accepted
Pavlina
Telerik team
answered on 24 Apr 2015, 11:59 AM
Hello,

You can try to achieve your goal with the CSS code snippet below:
.RadGrid_[SkinName] .rgFilterRow > td {
    white-space: normal !important;
}

Regards,
Pavlina
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
0
Ramesh
Top achievements
Rank 1
answered on 20 May 2015, 12:58 PM

Hi Pavlina,

Thanks for your prompt response. I used the CSS you provides above. This is showing properly in IE 11 (as I expected) but in Below IE versions ( IE 10,IE 9,IE 8),Chrome and Mozilla showing in different style. Attached screen shot for reference.

Is there any way all browsers shows like IE 11 ?

Thanks in advance 

Ramesh

0
Accepted
Pavlina
Telerik team
answered on 25 May 2015, 01:12 PM
Hi,

In order to show the range filter in one line only in all browsers you could try adding the following CSS code:
.rgFilterRow .RadPicker {
    display: block !important;
}

Regards,
Pavlina
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Ramesh
Top achievements
Rank 1
answered on 01 Jun 2015, 08:25 AM
Thanks, it works fine. 
Tags
Filter
Asked by
Ramesh
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Ramesh
Top achievements
Rank 1
Share this question
or