I have a combo box on a page with some code in the sekectedindexchanged event (this populates a second combo based on the contents of the first)
Whenever I select an item in the first combo box, it initiates a full page postback despite it being setup in an ajax proxy manager, am I doing something wrong ?
Whenever I select an item in the first combo box, it initiates a full page postback despite it being setup in an ajax proxy manager, am I doing something wrong ?
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadAjaxManagerProxy1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadComboBoxType" /> <telerik:AjaxUpdatedControl ControlID="RadComboBoxArtistGenre" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadComboBoxType"> <updatedcontrols> <telerik:AjaxUpdatedControl ControlID="RadComboBoxType" LoadingPanelID="RadAjaxLoadingPanel1" /> </updatedcontrols> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadComboBoxArtistGenre"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadComboBoxArtistGenre" LoadingPanelID="RadAjaxLoadingPanel2" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy><div class="cellArtistControl"> <telerik:RadComboBox ID="RadComboBoxType" Runat="server" Skin="Vista" Width="250px" onselectedindexchanged="RadComboBoxType_SelectedIndexChanged" AutoPostBack="True"> <CollapseAnimation Duration="200" Type="OutQuint" /> </telerik:RadComboBox> <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="RadComboBoxType" ErrorMessage="*" Font-Bold="True" InitialValue="-- Select A Type --" ValidationGroup="ArtistValidation"></asp:RequiredFieldValidator> </div> <div class="cellArtistControl"> <telerik:RadComboBox ID="RadComboBoxArtistGenre" runat="server" Skin="Vista" Width="250px"> </telerik:RadComboBox> </div> </div>