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

[Solved] dropdown not working after index change

1 Answer 97 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Andreas
Top achievements
Rank 1
Andreas asked on 01 Sep 2009, 04:01 AM
Hi, I have a combobox inside an updatepanel (Q2 2009).

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

 

 

 

 

1 Answer, 1 is accepted

Sort by
0
Andreas
Top achievements
Rank 1
answered on 01 Sep 2009, 04:09 AM
Nevermind this,

Turns out that I have to put some space between the div and the combobox :)

Thanks.
Tags
ComboBox
Asked by
Andreas
Top achievements
Rank 1
Answers by
Andreas
Top achievements
Rank 1
Share this question
or