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>