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

moving tabs on Page Load

1 Answer 59 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Kevin
Top achievements
Rank 1
Kevin asked on 11 Aug 2009, 09:24 AM
on page load if a condition is met then i want the tabstrip to move to a tab and multiview page is this possible?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 11 Aug 2009, 10:15 AM
Hi Kevin,

I guess you want to select particular RadTab based on condition. If so, you can set the SelectedIndex value RadTabStrip and RadMultiPageView accordingly as shown below.

CS:
if(condition)// Check for condition 
    RadTabStrip1.SelectedIndex = 2; 
    RadMultiPage1.SelectedIndex = RadTabStrip1.SelectedIndex; 

-Shinu.
Tags
TabStrip
Asked by
Kevin
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or