Is there any known compatibility issues with v2008 02 and IE8? My combo box is entire width and the dropdown is detached from the text box.
Thnaks
Thomas
1 Answer, 1 is accepted
0
Kamen Bundev
Telerik team
answered on 29 Jan 2010, 01:48 PM
Hi Thomas,
Yes, Q2 2008 doesn't have official IE8 support since IE8 was released the next year. However you can add this snippet to your page to fix the aforementioned issues: <!--[if gte IE 8]>
<style type="text/css">
.RadComboBox { display: inline-block !important; }
div.rcbSlide { padding: 0 2px 2px 0; }
div.rcbSlide div { margin: 2px 0 0 2px; }
div.rcbSlide div div { margin: auto; }
</style>
<![endif]-->
Let me know if that helps.