Hi! I have RadComboBox inside an UpdatePanel. On its selected index change event, i populate other controls inside same update panel and that works fine. But when I make selection from popup window (using ajax control toolkit and modal popup extender), same set of controls (radcombobox too) should be populated, but in that moment (when popup is closed) my combobox is not populated and it's shown only a small part of it.
I don't know what causes that, update panel or ajax control toolkit or something else?
Thanks, Ana
| <asp:UpdatePanel ID="upPartner" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false"> |
| <ContentTemplate> |
| <table id="tblMain" runat="server" style="width: 100%;" cellpadding="0" cellspacing="0"> |
| ... |
| <tr> |
| <td style="width: 75%;"> |
| <telerik:RadComboBox ID="comboName" runat="server" AllowCustomText="true" Width="75%" |
| AutoPostBack="true" Skin="Vista" OnSelectedIndexChanged="comboName_SelectedIndexChanged"> |
| <ItemTemplate> |
| <asp:Label ID="lblItemText" runat="server" CssClass="StandardInput"></asp:Label> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| ... |
| </ContentTemplate> |
| </asp:UpdatePanel> |
I don't know what causes that, update panel or ajax control toolkit or something else?
Thanks, Ana