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

RadTabStrip and RadMultiPage different ContentPlaceHolder

1 Answer 84 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Luis Silva
Top achievements
Rank 1
Luis Silva asked on 20 May 2010, 02:47 AM
If RadTabStrip and RadMultiPage are positioned in different ContentPlaceHolders of a Master Page, RadMultipage keeps presenting the fisrt view no matter wich tab you click. Is there a known workaround for this?

Thanks

Luis

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 20 May 2010, 02:30 PM
Hello,

Have you tried setting the RadMultiPage1's SelectedIndex value to the RadTabStrip SelectedIndex in the TabClick event?

In the "TabClick" event access the corresponding MultiPage from code behind and set the SelectedIndex accrodingly.
     
 
    protected void RadTabStrip1_TabClick(object sender, RadTabStripEventArgs e)  
    {  
        // Access the RadMultiPage1 control  
        RadMultiPage1.SelectedIndex = RadTabStrip1.SelectedIndex;  
    } 

Regards,
Princy.
Tags
TabStrip
Asked by
Luis Silva
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or