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

How do I ajaxify a radtabstrip and radmultipage?

1 Answer 107 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Robin
Top achievements
Rank 1
Robin asked on 01 Aug 2012, 04:12 PM
Hi,

When searching on rad control processing time performance issues I came across the below page:

http://www.telerik.com/help/aspnet-ajax/grid-viewstate-reduction-techniques.html

In step 6 it mentions "ajaxify the tabstrip and the multipage via RadAjaxManager"

How would I ajaxify my controls? Code below:

<asp:Panel ID="pnlTabs" runat="server" CssClass="tabstrip">

     <telerik:RadTabStrip
        ID="rtsTabs"
        runat="server"
        Skin="Default"
        MultiPageID="RadMultiPage1"
        SelectedIndex="0"  
        ReorderTabsOnSelect="true"
        Width="100%"
        AutoPostBack="true">
        <Tabs>
            <telerik:RadTab ID="Report1" Text="ABC">
            </telerik:RadTab>
            <telerik:RadTab ID="Report2" Text="ABC">
            </telerik:RadTab>           
        </Tabs>
    </telerik:RadTabStrip>

    <telerik:RadMultiPage
        ID="RadMultiPage1"
        runat="server"
        SelectedIndex="0"
        CssClass="pageView"
        Width="95%"
        RenderSelectedPageOnly="true">

        <telerik:RadPageView ID="rpvReport1" runat="server" CssClass="tabpage" Width="100%">
            <UC:Report1 runat="server" ID="ucReport1"  />
        </telerik:RadPageView>

        <telerik:RadPageView ID="rpvReport2" runat="server" CssClass="tabpage" Width="100%">
            <UC:Report2 runat="server" ID="ucReport2"  />
        </telerik:RadPageView>

    </telerik:RadMultiPage>

    
</asp:Panel>

Thanks.

1 Answer, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 03 Aug 2012, 11:27 AM
Hello Robin,

Please refer to the help topic below which elaborates on this matter:

http://www.telerik.com/help/aspnet-ajax/ajax-tips-and-tricks.html

Test the provided approach and let us know if it helps.

Kind regards,
Maria Ilieva
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Ajax
Asked by
Robin
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Share this question
or