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

Need separator and border for individual tab

2 Answers 73 Views
PageView
This is a migrated thread and some comments may be shown as answers.
TAMILARASAN
Top achievements
Rank 1
TAMILARASAN asked on 15 Sep 2018, 11:07 AM
In the page view (tabs) by default only the active tab is highlighted but the other tabs are shown as words with no separators & borders. I need to show the page view with separator & need borders for individual tabs.
Please check the attached image.

2 Answers, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 17 Sep 2018, 11:35 AM
Hello, 
 
In order to achieve your goal, you can iterate all RadPageViewStripItems and specify the the BorderColor:
private void RadForm1_Load(object sender, EventArgs e)
{
    RadPageViewStripElement stripViewElement = this.radPageView1.ViewElement as RadPageViewStripElement;
    foreach (RadPageViewStripItem item in stripViewElement.Items)
    {
        item.BorderColor = stripViewElement.ContentArea.BorderColor;
    }
}



I hope this information helps.

Regards,
Dess
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
TAMILARASAN
Top achievements
Rank 1
answered on 21 Sep 2018, 05:15 AM
Thank you Dess
Tags
PageView
Asked by
TAMILARASAN
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
TAMILARASAN
Top achievements
Rank 1
Share this question
or