Telerik RadTabStrip takes into account the direction attribute set to the control, or to any parent HTML element. If you set the direction of the body tag (or any other tag that contains Telerik RadTabStrip) to rtl, Telerik RadTabStrip reverses the tab order, and aligns itself to the right side of the container.
Example
The tabstrip below is with dir="rtl".

| ASP |
Copy Code |
|
<rad:RadTabStrip id="RadTabStrip1" runat="server" Skin="WinXP" dir="rtl"> <Tabs> <rad:Tab Text="First Tab"></rad:Tab> <rad:Tab Text="Second Tab"></rad:Tab> <rad:Tab Text="Third Tab"></rad:Tab> <rad:Tab Text="Fourth Tab"></rad:Tab> <rad:Tab Text="Fifth Tab"></rad:Tab> <rad:Tab Text="Sixth Tab"></rad:Tab> </Tabs> </rad:RadTabStrip> |
|
Copy Code |
See a live example of this functionality at www.telerik.com. |
See Also