I converted a project that was previously using old RadAjax Manager to Q1 2009 RadAjax for ASP .NET.
The old style of letting all the controls within pnl1 regular ASP Panel to modify txtException worked fine.
With Q1 2009, I have to specify each individual control within pnl1 in order to update txtException.
Is this expected behavior?
<asp:Panel ID="pnl1">
radio buttons
</asp:Panel>
Previous Code:
<telerik:AjaxSetting AjaxControlID="pnl1">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
Q1 2009:
<telerik:AjaxSetting AjaxControlID="rdoCntrl1">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rdoCntrl2">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rdoCntrl3">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="pnl1">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
The old style of letting all the controls within pnl1 regular ASP Panel to modify txtException worked fine.
With Q1 2009, I have to specify each individual control within pnl1 in order to update txtException.
Is this expected behavior?
<asp:Panel ID="pnl1">
radio buttons
</asp:Panel>
Previous Code:
<telerik:AjaxSetting AjaxControlID="pnl1">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
Q1 2009:
<telerik:AjaxSetting AjaxControlID="rdoCntrl1">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rdoCntrl2">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rdoCntrl3">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="pnl1">
<updatedcontrols>
<telerik:AjaxUpdatedControl ControlID="txtException" />
</updatedcontrols>
</telerik:AjaxSetting>