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

How do i move tab and multiview programmatically

4 Answers 132 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Kevin
Top achievements
Rank 1
Kevin asked on 02 Jul 2009, 01:52 PM
How do i programmatically force a tab to move to from one tab to another and get the multipage to do the same im using c# by the way

thanks
Kevin

4 Answers, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 02 Jul 2009, 02:01 PM
Hello Kevin,

Please refer to our TabStrip / Wizard example for details on the matter.

Regards,
Paul
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Kevin
Top achievements
Rank 1
answered on 02 Jul 2009, 02:30 PM
i have used the following code and done seem to have gotten it to work any other suggestions
 RadTabStrip tabStrip = (RadTabStrip)Page.FindControl("RadTabStrip1");  
            RadTab professionalInfoTab = tabStrip.FindTabByText("Results View");  
            professionalInfoTab.Enabled = true;  
            professionalInfoTab.Selected = true;  
 
            RadMultiPage multiPage = (RadMultiPage)Page.FindControl("mpBottomLeft");  
            RadPageView professionalInfoPageView = multiPage.FindPageViewByID("ViewService");  
 
            if (professionalInfoPageView == null)  
            {  
                professionalInfoPageView = new RadPageView();  
                professionalInfoPageView.ID = "ViewService";  
                multiPage.PageViews.Add(professionalInfoPageView);  
            }  
 
            professionalInfoPageView.Selected = true
0
Kevin
Top achievements
Rank 1
answered on 08 Jul 2009, 07:49 AM
it still doesnt seem to be working are there any other suggestions?
0
Paul
Telerik team
answered on 08 Jul 2009, 08:14 AM
Hi Kevin,

I think it will be best if you can open a support ticket and send us a simple running project (incl. your custom skin, CSS, images, DB backup if needed and so on) demonstrating the problem (and step-by-step instructions on doing so). In that way we can reproduce and pinpoint the problems you're facing on our side, understand the logic of your application and provide a solution.

Thanks beforehand for your patience and cooperation,
Paul
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
TabStrip
Asked by
Kevin
Top achievements
Rank 1
Answers by
Paul
Telerik team
Kevin
Top achievements
Rank 1
Share this question
or