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

RadDatePicker render issue on IE11

2 Answers 172 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Rajkumar
Top achievements
Rank 1
Rajkumar asked on 29 Apr 2014, 03:21 AM
Hi,

We are using the Telerik 2013.1.417.40 version and use the RadDatePicker and timer all over the site, which renders fine on all the browser except on IE11.
On all the browsers it uses the inline style "display:inline-block" and take the default width of "100px". We did not specify any width for the control and any css class.

<telerik:RadDatePicker ID="DatePickerStart"  runat="server" Calendar-ClientEvents-OnDateClick="DateSelected" 
                                DateInput-ClientEvents-OnValueChanged="DateChanged"  >
       <DatePopupButton></DatePopupButton>
       </telerik:RadDatePicker>
       &nbsp;&nbsp;&nbsp;&nbsp;
       <telerik:RadTimePicker runat="server" id="TimePickerStart" TimeView-OnClientTimeSelected="TimeSelected" ></telerik:RadTimePicker>
                            
The above code renders the Date picker textbox and time picker text box on the same line for all the browsers. But on IE11 both the boxes taking more than 100pixels width and the time picker box renders on next line. When i looked at it on IE11 developer tools, datepicker div renders with inline style "display : inline", for other browsers it comes as "inline-block". Even i gave the custom css class for the RadDatePicker and Timercontrols to specify the "display" property. But Telerik control renders the Inline display property.  


Is there any fix for IE11 render issue? Please find the attached image for the how it renders it on chrome and IE11.









2 Answers, 1 is accepted

Sort by
0
Galin
Telerik team
answered on 30 Apr 2014, 03:28 PM
Hello Rajkumar,

Thank you for contacting us.

This version released before the IE11 and there are some problems with this browser version. However I suggest you to upgrade or use the following CSS workaround:
._Telerik_IE9 .RadPicker {
    display: inline-block !important;
}

Please do not hesitate to contact us if other question or problem arise.

Regards,
Galin
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Rajkumar
Top achievements
Rank 1
answered on 30 Apr 2014, 04:25 PM
Hi,

Thanks for your response.

.RadPicker {    display: inline-block !important;}

It worked for me.

Raj
Tags
Calendar
Asked by
Rajkumar
Top achievements
Rank 1
Answers by
Galin
Telerik team
Rajkumar
Top achievements
Rank 1
Share this question
or