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

alternating item?

1 Answer 44 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Meister
Top achievements
Rank 1
Meister asked on 02 Dec 2008, 08:18 PM

Hi,

I have a requirement to have the site tab strip displayed as below

item1    item2
item3    item4
item5    item6
item7    item8

Is this possible to do using the control or any other navigation control?

1 Answer, 1 is accepted

Sort by
0
Serrin
Top achievements
Rank 1
answered on 02 Dec 2008, 09:42 PM
Hey Quade,

For that you would use the IsBreak="true" property in the tab definitions, as follows:

        <telerik:RadTabStrip ID="RadTabStrip1" runat="server" SelectedIndex="1"   
            Skin="SkyBlue" Width="662px" Height="125px">  
            <Tabs> 
                <telerik:RadTab Text="Advanced" Width="150">  
                </telerik:RadTab> 
                <telerik:RadTab IsBreak="true" Text="Automatic Updates" Selected="True" Width="150">  
                </telerik:RadTab> 
                <telerik:RadTab Text="Remote" Width="150">  
                </telerik:RadTab> 
                <telerik:RadTab Text="General" IsBreak="true" Width="150">  
                </telerik:RadTab> 
                <telerik:RadTab Text="Computer Name" Width="150">  
                </telerik:RadTab> 
                <telerik:RadTab Text="Hardware" Width="150">  
                </telerik:RadTab> 
            </Tabs> 
        </telerik:RadTabStrip> 

I also added the Width property, as otherwise tabs will have width based on their content, this makes it more uniform. :)
Tags
TabStrip
Asked by
Meister
Top achievements
Rank 1
Answers by
Serrin
Top achievements
Rank 1
Share this question
or