I have a master page which has RadAjaxManager in it , and web user control that has a simple form & simple controls on it with a submit linkbutton. On my user control I have a Radcombobox which is ajaxified by RadAjaxManagerProxy and I set the UpdatedControls prior to it. These are some labels, some textboxes and 1 submit linkbutton.
As I expected the Radcombobox does ajax post back and updates the controls needed. But when I click to the linkbutton which submits the form of web user control, it does nothing. Then I figured out that it does what it is expected, but doing postback in ajax . I mean the page is not normal postbacking. The button also ajaxifed. But I set the button only UpdatedControls setting of Radajaxmanagerproxy. When I remove the button from updated controls it postbacks normally which I wanted to be. I am ajaxifiying it because according to the combobox 's value i am enabling or disabling the linkbutton. So I need to add linkbutton to updatedcontrols collection. But I donot want its postback feature being ajaxified.
Here is my Radajaxmanagerproxy definitions
<
telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ddl">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="lbl1" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="lbl2" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="lbl3" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="lbl4" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="lbl5" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="txt" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="rbl" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="btn" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="uc1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="uc1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</
telerik:RadAjaxManagerProxy>