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

Aspx pages in tabstrip using rad multi page view

9 Answers 358 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Santaji Garwe
Top achievements
Rank 1
Santaji Garwe asked on 15 Jul 2008, 09:43 AM
Hi ,
I am using rad tab strip and rad multi page view .On click of particular tab i want to show a particular aspx page .
with tab strip remaining static,it should not navigat away on a separate page .
Each multi page should hold a separate aspx page

9 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 15 Jul 2008, 11:11 AM
Hello Santaji Garwe,

You can use IFRAME-s to achieve the same:

<telerik:RadPageView>
       <iframe src="Default.aspx"></iframe>
</telerik:RadPageView>

Regards,
Albert
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Gary
Top achievements
Rank 1
answered on 16 Jul 2008, 07:46 PM
Ok

How do I trigger your code?  I put it in and nothing shows up
0
Gary
Top achievements
Rank 1
answered on 17 Jul 2008, 12:50 PM
Never mind I got!!
0
Lyle Groome
Top achievements
Rank 2
answered on 24 Jul 2008, 12:05 AM
Well I'd still like to know. How do you trigger your code?
0
gy
Top achievements
Rank 1
answered on 03 Sep 2008, 11:53 AM
when I used IFrame to open external page from page view, I used Height='100%' at property IFrame,that property with IE but not work with FireFox (version 3.0).
Do you have any idea
0
gy
Top achievements
Rank 1
answered on 03 Sep 2008, 12:18 PM
Attribute Height='100%' at IFrame not work with firefox3.0, how to handle this?
Do you have any idea?
0
Effat
Top achievements
Rank 1
answered on 08 Mar 2011, 08:43 AM
I have the same situation but my multipage is placed in RadPane other than that of RadTabs. Is it possible that I do not use Iframe and multipage but instead use RadPane to populate tab views?

Also, I was told there is some performance issue if I were to use iframe inside of RadPane.. this is one reason why I don't want to use Iframe in my Radpane > Multipage > PageView.

0
Donald McLean
Top achievements
Rank 2
answered on 29 Jun 2011, 08:47 PM
I am having some problems trying to get this exact same thing to work.  I have a RadTabStrip that i asign the user controls to dynamically based of the PageViewID. I do have one user control that has been wrapped in a aspx page so we could remove the viewstate from it and not have remove viewstate from the entire application.
<telerik:RadTabStrip ID="rtsMainTabStrip" runat="server" MultiPageID="rmpMainTabs"
    SelectedIndex="6" OnTabClick="rtsMainTabStrip_TabClick"
    OnClientTabSelecting="onTabSelecting" >
    <Tabs>
        <telerik:RadTab runat="server" Text="Test" PageViewID="test" Value="false">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="rmpMainTabs" runat="server" SelectedIndex="0" OnPageViewCreated="rmpMainTabs_PageViewCreated">
    <telerik:RadPageView ID="test" runat="server">
        <iframe id="ifrmTest" name="targetFrame" src="Test.aspx" runat="server" style="width: 100%; height: 100%"></iframe>
    </telerik:RadPageView>
</telerik:RadMultiPage>

It takes control of the whole page and when I switch between tabs other tabs load and when i got to the test page it blows up. I tried the onTabClick event and making the iFrame visible and unvisible with no luck. Any help would be greatly appreciated.
0
Dimitar Terziev
Telerik team
answered on 05 Jul 2011, 08:25 AM
Hi Donald,

First could you clarify which version of the controls you are using?

Also please try to specify what do you mean by "when i got to the test page it blows up", do you receive any error or the page just stops working.

Instead of using an iframe in the pageview, please try to use the ContentUrl property of the pageview which will load the corresponding page within an iframe by default.

Best wishes,
Dimitar Terziev
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
TabStrip
Asked by
Santaji Garwe
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Gary
Top achievements
Rank 1
Lyle Groome
Top achievements
Rank 2
gy
Top achievements
Rank 1
Effat
Top achievements
Rank 1
Donald McLean
Top achievements
Rank 2
Dimitar Terziev
Telerik team
Share this question
or