In my pages, I (almost) always use the ajaxmanager(proxy). A lot of time, I have some buttons doing different actions, but updating the same zone.
For these cases, I have to create X ajaxsettings zone, with the updatedcontrols associated. These updatedcontrols are the same.
Could it be possible to use a Trigger zone, where we could add some AjaxInitControl, instead of having to repeat 3 times the controls that update the same zone.
it may look like this:
<telerik:RadAjaxManagerProxy runat="server" ID="ajaxproxy1">
<AjaxSettings>
<telerik:AjaxSetting>
<TriggerControls>
<telerik:AjaxTriggerControl controlid="button1">
<telerik:AjaxTriggerControl controlid="button2">
<telerik:AjaxTriggerControl controlid="button3">
</TriggerControls>
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="panel1" />
<telerik:AjaxUpdatedControl ControlID="panel2" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
instead of
<telerik:RadAjaxManagerProxy runat="server" ID="ajaxproxy1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="button1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="panel1" />
<telerik:AjaxUpdatedControl ControlID="panel2" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="button2">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="panel1" />
<telerik:AjaxUpdatedControl ControlID="panel2" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="button3">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="panel1" />
<telerik:AjaxUpdatedControl ControlID="panel2" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
Thank you