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

Problem with RadTabStrip

1 Answer 146 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Thomas
Top achievements
Rank 1
Thomas asked on 09 May 2008, 07:18 PM
I have a web page that uses a tab strip with two tabs and a multipage with two pageviews, when I run the page, I can not select the second tab strip.  This is within a content place holder but even as a standalone page, I can not get the tab strip to change its selected index.

Help!!!!!

Thomas

Code:

&nbsp;<telerik:RadScriptManager ID="RadScriptManager1" runat="server">

</telerik:RadScriptManager>

<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1"

SelectedIndex="0" Skin="WebBlue">

<Tabs>

<telerik:RadTab runat="server" Selected="True" Text="Clock Details">

</telerik:RadTab>

<telerik:RadTab runat="server" Text="My Clock History">

</telerik:RadTab>

</Tabs>

</telerik:RadTabStrip>

<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">

<telerik:RadPageView ID="RadPageView1" runat="server">

<uc1:wucClock ID="WucClock1" runat="server" />

</telerik:RadPageView>

<telerik:RadPageView ID="RadPageView2" runat="server">

<uc2:wucClockinHistory ID="WucClockinHistory1" runat="server" />

</telerik:RadPageView>

</telerik:RadMultiPage>

1 Answer, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 13 May 2008, 08:42 AM
Hello Thomas,

Most probably you have some validators inside your UserControls. In order to achieve your goal you will have to set CausesValidation="False" in the definition of the tabstrip control.

Another possible solution for this issue is to set the tabstrip AutoPostBack property to true and the multipage RenderSelectedPageOnly to true. This will prevent the invisible validators from firing.

Kind regards,
Paul
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
TabStrip
Asked by
Thomas
Top achievements
Rank 1
Answers by
Paul
Telerik team
Share this question
or