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

Remove Tabs From PageView (Tabless Tab Control)

2 Answers 350 Views
PageView
This is a migrated thread and some comments may be shown as answers.
Landon
Top achievements
Rank 2
Landon asked on 28 Dec 2014, 12:01 AM
Is it possible to remove the tabs from RadPageView?

I want to recreate the functionality of a Tabless Tab Control with the telerik controls, and I cannot figure out how to accomplish this. Is RadPageView the appropriate control to use?

2 Answers, 1 is accepted

Sort by
0
Landon
Top achievements
Rank 2
answered on 28 Dec 2014, 07:11 PM
I have found the solution to this. To disable the entire strip view, you can use this code when the form is initialized:

radPageView.RootElement.Visibility = ElementVisibility.Hidden;
0
Accepted
Stefan
Telerik team
answered on 29 Dec 2014, 08:55 AM
Hello Landon,

Thank you for writing.

Here is also an alternative solution, which will hide just the item container:
((RadPageViewStripElement)radPageView1.ViewElement).ItemContainer.Visibility = ElementVisibility.Collapsed;

I hope that you find this information useful. Should you have any other questions, do not hesitate to contact us.

Regards,
Stefan
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
PageView
Asked by
Landon
Top achievements
Rank 2
Answers by
Landon
Top achievements
Rank 2
Stefan
Telerik team
Share this question
or