After selectedIndexChanged, I can't click on dropdown arrow. This bug is happening in Firefox and Chrome.
in IE it's fine.
This updatepanel is inside LoggedInTemplate:
<
asp:UpdatePanel runat="server" ID="formupdatepanel">
<ContentTemplate>
<telerik:RadComboBox ID="formlist" runat="server" AutoPostBack="true"
OnSelectedIndexChanged="formlist_selectedindexchanged" OffsetX="-40" OffsetY="-155" AllowCustomText="true" EmptyMessage="Select a form">
<Items>
<telerik:RadComboBoxItem Text="Absence Form" Value="Absence Form" />
<telerik:RadComboBoxItem Text="Satisfaction Form" Value="Satisfaction Form" />
</Items>
</telerik:RadComboBox> <br />
<div runat="server" ID="formdiv"></div>
</ContentTemplate>
</asp:UpdatePanel>
On My code behind, in selectedIndexChanged event,
I put formdiv.InnerHtml = CallForm()
Where CallForm is just an object tag to play Flash.
Also, I have to manually put the items on on the aspx page. When I put them in RadBuilder, it doesn't work.
Any help is appreciated