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

Dropdown dosent work after update to 2011.3

1 Answer 66 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Wendelstam
Top achievements
Rank 1
Wendelstam asked on 16 Jan 2012, 09:51 AM

Hi

I have used the following code for a while but after updating to 2011.3 from 2011.2.Sp1
The combox is not displaying the dropdown when clicked. Have reproduces the issue in a simple standalone webform and it seems as if the child controls (asp:DropDownList) is causing the issue somehow?

Any ideas about how I can fix this?

Thanks in advance
Johan

EDIT:
Updating to 2011 Q3 SP1 solved it. Dont know what caused it but it works after the service pack

<telerik:RadComboBox ID="rcbxChartSerie" runat="server" DropDownWidth="240px" Height="200px"
    SkinID="radComboBox" Width="150px" CollapseDelay="1000">
    <Items>
        <telerik:RadComboBoxItem runat="server" Text="Serie X" Value="_header" />
    </Items>
    <CollapseAnimation Duration="1500" Type="OutQuint"></CollapseAnimation>
    <ExpandAnimation Duration="350" Type="OutQuint"></ExpandAnimation>
    <ItemTemplate>
        <div onclick="event.cancelBubble=true" style="padding: 8px 3px 3px 8px;">
            <div>
                <asp:Label ID="lblEnabled" runat="server" Text="Enabled" />
            </div>
            <div>
                <asp:DropDownList ID="ddlEnabled" runat="server" Width="200px" Enabled="false" />
            </div>
            <div style="margin-top: 8px;">
                <asp:Label ID="lblColumn" runat="server" Text="Column" />
            </div>
            <div>
                <asp:DropDownList ID="ddlColumn" runat="server" Width="200px" Enabled="false" />
            </div>
            <div style="margin-top: 8px;">
                <asp:Label ID="lblType" runat="server" Text="Type" /></div>
            <div>
                <asp:DropDownList ID="ddlType" runat="server" Width="200px" Enabled="false" />
            </div>
            <div style="margin-top: 8px;">
                <asp:Label ID="lblYAxis" runat="server" Text="Y Axis" />
            </div>
            <div>
                <asp:DropDownList ID="ddlAxis" runat="server" Width="200px" Enabled="false" />
            </div>
        </div>
    </ItemTemplate>
</telerik:RadComboBox>        

1 Answer, 1 is accepted

Sort by
0
Helen
Telerik team
answered on 16 Jan 2012, 11:05 AM
Hello,

It was a bug in Q3 2011, which we fixed in Q3 2011 SP1.

Greetings,
Helen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
ComboBox
Asked by
Wendelstam
Top achievements
Rank 1
Answers by
Helen
Telerik team
Share this question
or