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

dropdown arrow not showing

1 Answer 246 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Felipe
Top achievements
Rank 1
Felipe asked on 13 May 2011, 08:18 PM
Hello,

I am using a radcombobox, but cannot get the default style (or any style/skin for that matter) to show the rcbArrowCell to show up!

I have tried several fixes including setting the enablebasestylesheet=false to no avail.

The html element is being rendered at the correct size/width, the sprite image is begin downloaded successfully, and the background image position is also correct...  it just isn't showing up?

any help on this would be great.  I can provide code if you want it... but i do not know what to give you because I can just create a blank new form, and then put in a single combobox with NO extra code, and it does the same thing.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 16 May 2011, 06:32 AM
Hello Leland,

I suppose you may be using any global CSS and that may override the default CSS of the RadComboBox.
Here is the sample  page which worked as expected. Try it as a seperate page.
aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="jsError.aspx.cs" Inherits="Combobox_jsError" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <telerik:RadComboBox ID="radCombo1" runat="server" AutoPostBack="false"
            AppendDataBoundItems="true" >
            <Items>
                <telerik:RadComboBoxItem Text="Select database" Value="-1" />
                <telerik:RadComboBoxItem Text="aa" />
                <telerik:RadComboBoxItem Text="ab" />
            </Items>
        </telerik:RadComboBox>
    </div>
    </form>
</body>
</html>


Thanks,
Shinu.
Tags
ComboBox
Asked by
Felipe
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or