I have a few different levels of master page built with Tabstrip for my project, the Tabstrip works fine except when I select the lower level of one tab, the screen auto displays the first tab on a higher level of tabs' list.
is there a way to aviod this with out built the master master page with ChildTabs, cos that way it still won't display all the levels of taps i need at the bottom level.
So it's like Under this one there are other two master pages with Tabstrps as well, problem occurs during click the lower level's tabs, the display auto changed to the first one nomatter which one it was under
is there a way to aviod this with out built the master master page with ChildTabs, cos that way it still won't display all the levels of taps i need at the bottom level.
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> |
</asp:Content> |
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder2" runat="server"> |
|
<div id="body"> |
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Vista" MultiPageID="RadMultiPage1" SelectedIndex="0" ClickSelectedTab="true"> |
<Tabs> |
<telerik:RadTab Text="Bills" NavigateUrl="ReportParameters.aspx" runat="server" Selected="True" Font-Underline="true" Font-Italic="true" > |
</telerik:RadTab> |
<telerik:RadTab Text="Reports" NavigateUrl="FlowThroughStart.aspx" runat="server" Selected="True" Font-Underline="true" Font-Italic="true"> |
</telerik:RadTab> |
</Tabs> |
</telerik:RadTabStrip> |
<telerik:RadMultiPage runat="server" ID="RadMultiPage1" SelectedIndex="0"> |
<telerik:RadPageView runat="server" ID="RadPageView1"></telerik:RadPageView> |
<telerik:RadPageView runat="server" ID="RadPageView2" ></telerik:RadPageView> |
</telerik:RadMultiPage> |
<asp:ContentPlaceHolder runat="server" ID="UserHomeStartContentHolder"> |
</asp:ContentPlaceHolder> |
</div> |
</asp:Content> |
So it's like Under this one there are other two master pages with Tabstrps as well, problem occurs during click the lower level's tabs, the display auto changed to the first one nomatter which one it was under