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

RadComboBox IE11 wrong rendering Q1 2014

6 Answers 112 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Prasanth
Top achievements
Rank 1
Prasanth asked on 20 Mar 2014, 08:30 AM
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>

6 Answers, 1 is accepted

Sort by
0
Helen
Telerik team
answered on 20 Mar 2014, 09:06 AM
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
 

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
0
Helen
Telerik team
answered on 21 Mar 2014, 10:35 AM
Hello,

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
0
Helen
Telerik team
answered on 24 Mar 2014, 03:41 PM
Hi,

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
Tags
ComboBox
Asked by
Prasanth
Top achievements
Rank 1
Answers by
Helen
Telerik team
Prasanth
Top achievements
Rank 1
Mats
Top achievements
Rank 1
Share this question
or