Strange problem in IE11 all work around and finally here.
Problem on first attempt dropdown, works well on second attempt.
Check the screen shot:
Html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<telerik:RadComboBox ID="cmbRole" runat="server" EnableAutomaticLoadOnDemand="true" DataValueField="RoleId" DataTextField="RoleName" DataSourceID="sqlcmbRole">
</telerik:RadComboBox>
<asp:SqlDataSource runat="server" ID="sqlcmbRole" ConnectionString='<%$ ConnectionStrings:ConnectionString %>' SelectCommand="SELECT [RoleId], [RoleName],Status FROM [vw_Display_Roles]">
</asp:SqlDataSource>
</div>
</form>
</body>
</html>
Problem on first attempt dropdown, works well on second attempt.
Check the screen shot:
Html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<telerik:RadComboBox ID="cmbRole" runat="server" EnableAutomaticLoadOnDemand="true" DataValueField="RoleId" DataTextField="RoleName" DataSourceID="sqlcmbRole">
</telerik:RadComboBox>
<asp:SqlDataSource runat="server" ID="sqlcmbRole" ConnectionString='<%$ ConnectionStrings:ConnectionString %>' SelectCommand="SELECT [RoleId], [RoleName],Status FROM [vw_Display_Roles]">
</asp:SqlDataSource>
</div>
</form>
</body>
</html>
6 Answers, 1 is accepted
0
Hi,
We haven't seen a similar problem. Do you reproduce it at our demos:
http://demos.telerik.com/aspnet-ajax/combobox/examples/overview/defaultcs.aspx
Regards,
Helen
Telerik
We haven't seen a similar problem. Do you reproduce it at our demos:
http://demos.telerik.com/aspnet-ajax/combobox/examples/overview/defaultcs.aspx
Regards,
Helen
Telerik
DevCraft Q1'14 is here! Watch the online conference to see how this release solves your top-5 .NET challenges. Watch on demand now.
0

Prasanth
Top achievements
Rank 1
answered on 20 Mar 2014, 10:28 AM
Hi Helen,
You demos are working with height property set for radcombobox.
In my example there is no height set.
Is this so for IE11?
Regards
You demos are working with height property set for radcombobox.
In my example there is no height set.
Is this so for IE11?
Regards
0
Hello,
Please add the following style to your page's head tag:
Hope it helps.
Regards,
Helen
Telerik
Please add the following style to your page's head tag:
<style type=
"text/css"
>
.rcbScroll
{
height
:
auto
!important
;
}
</style>
Hope it helps.
Regards,
Helen
Telerik
Build cross-platform mobile apps using Visual Studio and .NET. Register for the online webinar on 03/27/2014, 11:00AM US ET.. Seats are limited.
0

Prasanth
Top achievements
Rank 1
answered on 22 Mar 2014, 04:53 AM
Hi,
This above markup you said has worked for the problem i said, but now amazingly no scroll bars for RadComboBox all together, dropdown hides the list on no window space.
Check the screen shot.
Regards
This above markup you said has worked for the problem i said, but now amazingly no scroll bars for RadComboBox all together, dropdown hides the list on no window space.
Check the screen shot.
Regards
0
Hi,
You may try the following:
Regards,
Helen
Telerik
You may try the following:
<style type=
"text/css"
>
.rcbList
{
background
:
#fff
;
}
</style>
Regards,
Helen
Telerik
Build cross-platform mobile apps using Visual Studio and .NET. Register for the online webinar on 03/27/2014, 11:00AM US ET.. Seats are limited.
0

Mats
Top achievements
Rank 1
answered on 11 Apr 2014, 12:33 PM
I had the same problem and can verify that Helen's suggestion solved it!
Thanks
Mats
Thanks
Mats