Hi,
Sorry if this has been discussed, I couldn't find much on the forum.
I have a RadComboBox inside an asp:UpdatePanel. The ComboBox performs an OnSelectedIndexChanged Postback which loads soome detail about the selected item onto the page. However, when I select an Item it performs a full page PostBack, as if the UpdatePanel weren't there.
EXAMPLE:
<asp:UpdatePanel ID="PersonDetailPanel" runat="server">
<ContentTemplate>
<telerik:RadComboBox ID="PersonNameCombo" runat="server"
OnItemsRequested="PersonNameCombo_ItemsRequested" EnableLoadOnDemand="True"
OnSelectedIndexChanged="PersonNameCombo_SelectedIndexChanged"
AutoPostBack="true" Width="350px" />
<asp:Label ID="AgeLabel" runat="server" /><br/>
<asp:Label ID="AddressLabel" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
Is there a solution to this?
Cheers
Jordan
Sorry if this has been discussed, I couldn't find much on the forum.
I have a RadComboBox inside an asp:UpdatePanel. The ComboBox performs an OnSelectedIndexChanged Postback which loads soome detail about the selected item onto the page. However, when I select an Item it performs a full page PostBack, as if the UpdatePanel weren't there.
EXAMPLE:
<asp:UpdatePanel ID="PersonDetailPanel" runat="server">
<ContentTemplate>
<telerik:RadComboBox ID="PersonNameCombo" runat="server"
OnItemsRequested="PersonNameCombo_ItemsRequested" EnableLoadOnDemand="True"
OnSelectedIndexChanged="PersonNameCombo_SelectedIndexChanged"
AutoPostBack="true" Width="350px" />
<asp:Label ID="AgeLabel" runat="server" /><br/>
<asp:Label ID="AddressLabel" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
Is there a solution to this?
Cheers
Jordan