RadTabStrip for ASP.NET

Vertical tabstrip Send comments on this topic.
See Also
Feature overview > Vertical tabstrip

Glossary Item Box

A vertical tabstrip is rendered when the Orientation property is set to VerticalLeftToRight or VerticalRightToLeft.

The two values differ in the alignment of child tabs, if any:

  • VerticalLeftToRight aligns child tabs to the left of their parents;
  • VerticalRightToLeft aligns child tabs to the right of their parents.
In vertical mode the tabstrip should use vertical skins. Vertical skins have the "Vertical" prefix in their name.

        Example

      The example below shows two vertical tabstrips as defined by the Orientation property of RadTabStrip.

      Left-to-right:

      A vertical tabstrip

       

       

       

       

       

       

       

       

      ASPX Copy Code
      <rad:RadTabStrip id="RadTabStrip1" runat="server"
         
      Orientation="VerticalLeftToRight" Skin="VerticalSimple">
         
      <Tabs>
             
      <rad:Tab Text="Company"></rad:Tab>
             
      <rad:Tab Text="Products">
                 
      <Tabs>
                     
      <rad:Tab Text="Try"></rad:Tab>
                     
      <rad:Tab Text="Purchase"></rad:Tab>
                 
      </Tabs>
             
      </rad:Tab>
             
      <rad:Tab Text="Services"></rad:Tab>
             
      <rad:Tab Text="Support"></rad:Tab>
             
      <rad:Tab Text="Contact Us"></rad:Tab>
         
      </Tabs>
      </
      rad:RadTabStrip>

      Right-to-left:

      Vertical tabstrip with right-to-left orientation of child tabs

      ASPX Copy Code
      <rad:RadTabStrip id="RadTabStrip1" runat="server"
         
      Orientation="VerticalRightToLeft" Skin="VerticalSimple">
         
      <Tabs>
             
      <rad:Tab Text="Company"></rad:Tab>
             
      <rad:Tab Text="Products">
                 
      <Tabs>
                     
      <rad:Tab Text="Try"></rad:Tab>
                     
      <rad:Tab Text="Purchase"></rad:Tab>
                 
      </Tabs>
             
      </rad:Tab>
             
      <rad:Tab Text="Services"></rad:Tab>
             
      <rad:Tab Text="Support"></rad:Tab>
             
      <rad:Tab Text="Contact Us"></rad:Tab>
         
      </Tabs>
      </
      rad:RadTabStrip>
      See a live example of this functionality at www.telerik.com.

      See Also