This is a very general question so i'm sure it could be answered, but i do tend to get myself confused when using the radajaxmanager.
Basically, my question is, If i have a radcombobox for example, which say performs some functions on some other controls on the page.
Can I : Wrap everything in a RadAjaxPanel then simply state that the RadAjaxPanel updates itself and is also the Ajax Control.
Or is the RadAjaxPanel ONLY for ajaxifying standard .NET controls, and i have to reference each telerik control in the RadAjaxManager.
I guess an example would help
<telerik:RadComboBox ID=combo1... >
<telerik:RadComboBox ID=combo2 .. >
<asp:label id=label1 ...>
Say these 2 update each other / the label. Would i therefore need to add both combo1 & 2 into my radajaxmanager or could i wrap the entire lot in a radajaxpanel e.g. the top 2, or the bottom 1
Basically, my question is, If i have a radcombobox for example, which say performs some functions on some other controls on the page.
Can I : Wrap everything in a RadAjaxPanel then simply state that the RadAjaxPanel updates itself and is also the Ajax Control.
Or is the RadAjaxPanel ONLY for ajaxifying standard .NET controls, and i have to reference each telerik control in the RadAjaxManager.
I guess an example would help
<telerik:RadComboBox ID=combo1... >
<telerik:RadComboBox ID=combo2 .. >
<asp:label id=label1 ...>
Say these 2 update each other / the label. Would i therefore need to add both combo1 & 2 into my radajaxmanager or could i wrap the entire lot in a radajaxpanel e.g. the top 2, or the bottom 1
<telerik:AjaxSetting AjaxControlID="combo1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="combo2" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="combo2"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="combo1" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadAjaxPanel1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadAjaxPanel1" /> </UpdatedControls> </telerik:AjaxSetting>