Reference - SS.control.tabbar - Tab Bar

The Tab Bar control provides very quick and easy implementation of the a tab bar in the web page. This control relies on nested tab controls being defined inside the tags.

E.g.
<div ext="tabbar" id="tabs1" onselect="alert($gc(this.id).selectedTab().id);">
 <div ext="tab" selected=1>Tab1</div>
 <div ext="tab">Tab2</div>
 <div ext="tab">Tab3</div>
 <div ext="tab">Tab4</div>
</div>

Attributes:

Functions:

Members:

Attributes
onselect
OnSelect function Function called when the tab has been selected.
s - {String) - function call
v1.0.3.20081026
[Top]
visible
Tab Bar Visible Sets the visibility of the tab bar. Use in conjunction with style="display:none;" to hide the initial rendering of the control.
b - {Boolean} (Default = true)
v1.0.3.20081026
[Top]
Functions
selectedTab
Selected Tab Returns the selected tab control
c - {SS.control.tab}
v1.0.3.20081026
[Top]
tabs
Tabs Returns an array of tab controls which have been defined inside this tab bar.
v1.0.3.20081026
[Top]