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

How to make multiple RadTabs visible at once

2 Answers 94 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Gary
Top achievements
Rank 1
Gary asked on 04 May 2011, 02:24 AM
I am using the RadTabStrip with RadMultiPage. Normally when a user selects a tab, only the appropriate RadPageView is visible. When you select a different tab, a different RadPageView becomes visible, and the previous is hidden.

In a certain scenario (e.g. when I print my page), I would like to have ALL tabs (all RadPageView in a RadMultiPage) visible at once. How can I do that?

Thanks,
Jay

2 Answers, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 05 May 2011, 01:11 PM
Hello Jay O'Brien,

Please note that when you click on a tab and one of the pageviews is shown - the others are rendered with class rmpHiddenView. So you can change this css class and you will be able to see all the pageviews one under the other.
 
.rmpHiddenView
        {
            display: block !important;
        }

Please take a look at the full project in the attached .zip file for an example.

Hope this helps.

Best wishes,
Veronica Milcheva
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.

0
Gary
Top achievements
Rank 1
answered on 06 May 2011, 12:18 AM
Perfect, thank you!!
Tags
TabStrip
Asked by
Gary
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Gary
Top achievements
Rank 1
Share this question
or