Hello,
I have a Tabstrip.
The following is a snippet showing relevant ASPX code.
I can select the Tabs in the code behind with rtsTab.SelectedIndex = 2.
But how can I select the Child-Tabs in the code behind?
Thanks
Thomas
I have a Tabstrip.
The following is a snippet showing relevant ASPX code.
I can select the Tabs in the code behind with rtsTab.SelectedIndex = 2.
But how can I select the Child-Tabs in the code behind?
<telerik:RadTabStrip ID="rtsTab" runat="server" OnClientTabSelecting="onTabSelecting"
SelectedIndex="0" Skin="Vista" Width="100%" MultiPageID="mpTab">
<Tabs>
<telerik:RadTab runat="server" PageViewID="pv1" Selected="True" Text="Tab1">
</telerik:RadTab>
<telerik:RadTab runat="server" PageViewID="pv2" Text="Tab2">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="Tab3" SelectedIndex="0">
<Tabs>
<telerik:RadTab Text="Child1" PageViewID="pvC1" Selected="True" />
<telerik:RadTab Text="Child2" PageViewID="pvC2" />
</Tabs>
</telerik:RadTab>
</Tabs>
Thanks
Thomas