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

Rad Tap strip

2 Answers 115 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Parodist
Top achievements
Rank 1
Parodist asked on 24 Apr 2009, 09:10 PM
I have 4 tap strips A,B,C & D.When I click on A - it should display my custom controls within A,similarly B should display its own custom controls  followed by C and D however all the tapstrips displays only custom controls of A. 

Am I missing something??

2 Answers, 1 is accepted

Sort by
0
ManniAT
Top achievements
Rank 2
answered on 24 Apr 2009, 09:59 PM
Hi Parodist,

could you please post some code (ASPX), it is hard to tell WHY something doesn't do what you expected while it's unclear HOW you did it.
Meanwhile a minmalistic "solution" - maybe it helps you to find out what's going wrong:
    <telerik:RadTabStrip runat="server" MultiPageID="RadMultiPage1">  
            <Tabs> 
                <telerik:RadTab runat="server" PageViewID="RadPageView1" Text="Root RadTab1" Selected="true">  
                </telerik:RadTab> 
                <telerik:RadTab runat="server" PageViewID="RadPageView" Text="Root RadTab2">  
                </telerik:RadTab> 
                <telerik:RadTab runat="server" PageViewID="RadPageView" Text="Root RadTab3">  
                </telerik:RadTab> 
            </Tabs> 
        </telerik:RadTabStrip> 
        <telerik:RadMultiPage ID="RadMultiPage1" runat="server">  
            <telerik:RadPageView ID="RadPageView1" runat="server" Selected="true">  
            myControl One here  
            </telerik:RadPageView> 
            <telerik:RadPageView ID="RadPageView2" runat="server">  
            myControl Two here  
            </telerik:RadPageView> 
            <telerik:RadPageView ID="RadPageView3" runat="server">  
            myControl Three here  
            </telerik:RadPageView> 
        </telerik:RadMultiPage> 

HTH

Manfred
PS: sorry the mine has only three tabs - I hope you don't mind :)
0
Princy
Top achievements
Rank 2
answered on 27 Apr 2009, 12:54 PM
Hello Parodist,

Using MultiPage should be the right option as suggested by Manfred. The PageViewIds' for the respective tabs can be set to the corresponding PageViewIds' to view diferent controls or pages on each tab click. Also take A look at the following demo which can guide you better.
TabStrip / MultiPage

Thanks
Princy.
Tags
TabStrip
Asked by
Parodist
Top achievements
Rank 1
Answers by
ManniAT
Top achievements
Rank 2
Princy
Top achievements
Rank 2
Share this question
or