This is a migrated thread and some comments may be shown as answers.

RadMultiPage Ajax

1 Answer 97 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
david
Top achievements
Rank 1
david asked on 17 Jun 2014, 05:33 PM
Hi,

I updated my RadTabStrip and RadMultiPage controls ajax manager per this - http://demos.telerik.com/aspnet-ajax/tabstrip/examples/application-scenarios/ajax-enabled-tabstrip-and-multipage/defaultcs.aspx

But now on one of the .ascx pages where I have several Ajaxified RadGrids the controls in the grid won't post? The ajaxmanager on the page is question looks like this:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
             <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">  
                    <UpdatedControls>  
                        <telerik:AjaxUpdatedControl ControlID="RadGrid1" />  
                                <telerik:AjaxUpdatedControl ControlID="RadGrid3" />  
                                <telerik:AjaxUpdatedControl ControlID="RadGrid4" />  
                    </UpdatedControls>  
                </telerik:AjaxSetting>  
            <telerik:AjaxSetting AjaxControlID="RadGrid4">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadWindow1" />
                    <telerik:AjaxUpdatedControl ControlID="RadWindow2" />
                    <telerik:AjaxUpdatedControl ControlID="RadGrid3" UpdatePanelCssClass="" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadGrid2">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadWindow2" />
                    <telerik:AjaxUpdatedControl ControlID="Label1" UpdatePanelCssClass="" />
                    <telerik:AjaxUpdatedControl ControlID="RadGrid2" />
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1" UpdatePanelCssClass="" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadGrid2" UpdatePanelCssClass="" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>

1 Answer, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 18 Jun 2014, 07:48 AM
Hi David,

As you can see from the online demo mentioned in your post the RadMultiPage an the RadTabStrip controls are added in the RadAjax Settings.
Note that a single PageView or a control nested in a PageView could not be added as AJAX initiator or updated control in the AJAX settings. The only possible approach is to add the whole MultiPage in the RadAjaxManager settings or wrap the whole control into RadAjaxPanel. When we set the MultiPage as an updated control, you should also include the TabStrip associated with it in the Ajax settings.

Give this a try and verify if it helps.

Regards,
Maria Ilieva
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Ajax
Asked by
david
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Share this question
or