This demo shows how to Ajaxify RadTabStrip and RadPageView with RadAjaxManager.
The RadTabStrip and the RadComboBox are configured to perform ajax requests instead of regular postbacks. This is done by configuring
the RadAjaxManager setting, where in additiona a loading panel is set to be displayed while the call to the server is processing.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadComboBox1">
<UpdatedControls>
<telerik:AjaxUpdatedControl LoadingPanelID="LoadingPanel1" ControlID="RadMultiPage1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RadTabStrip1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadTabStrip1" />
<telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RadMultiPage1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadTabStrip1" />
<telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Notes: In some Ajax scenarios RadTabStrip requires to update itself and the assigned RadMultiPage.
In scenarios where you have multiple postback controls in the PageViews, instead of adding separate ajax settings for them,
we recommend you to ajaxify the RadMultiPage. And for better performance set its RenderSelectedPageOnly property to true