webgui/www/extras/yui/docs/YAHOO.widget.TabView.html
JT Smith 20f8df1291 upgrading to YUI 2.6
data tables are going to need some work yet, but the other stuff seems to be working 100%
2008-10-22 23:53:29 +00:00

1258 lines
64 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>API: tabview YAHOO.widget.TabView (YUI Library)</title>
<link rel="stylesheet" type="text/css" href="assets/api.css">
<script type="text/javascript" src="assets/api-js"></script>
<script type="text/javascript" src="assets/ac-js"></script>
</head>
<body id="yahoo-com">
<div id="doc3" class="yui-t2">
<div id="hd">
<a href="http://developer.yahoo.com/yui/"><h1>Yahoo! UI Library</h1></a>
<h3>tabview&nbsp; <span class="subtitle">2.6.0</span></h3>
<p>
<a href="./index.html">Yahoo! UI Library</a>
&gt; <a href="./module_tabview.html">tabview</a>
&gt; YAHOO.widget.TabView
</p>
</div>
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<form name="yui-classopts-form">
<span id="classopts"><input type="checkbox" name="showprivate" id="showprivate" /> <label for="showprivate">Show Private</label></span>
<span id="classopts"><input type="checkbox" name="showprotected" id="showprotected" /> <label for="showprotected">Show Protected</label></span>
<span id="classopts"><input type="checkbox" name="showdeprecated" id="showdeprecated" /> <label for="showdeprecated">Show Deprecated</label></span>
</form>
<h2>
Class <b>YAHOO.widget.TabView</b>
<span class="extends">
- extends <a href="YAHOO.util.Element.html">YAHOO.util.Element</a>
</span>
<span class="extends">
</span>
</code>
</h2>
<!-- class tree goes here -->
<div class="summary description">
A widget to control tabbed views.
</div>
<div class="section constructor details">
<h3 id="constructor">Constructor</h3>
<div class="content">
<div class="detail">
<strong>YAHOO.widget.TabView</strong>
<code>
(
el(optional)
,
attr
)
</code>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>el(optional)
&lt;HTMLElement | String | Object&gt;
</code>
The html
element that represents the TabView, or the attribute object to use.
An element will be created if none provided.
</dd>
<dd>
<code>attr
&lt;Object&gt;
</code>
(optional) A key map of the tabView's
initial attributes. Ignored if first arg is attributes object.
</dd>
</dl>
</div>
</div>
</div>
</div>
<div class="section field details">
<h3 id="properties">Properties</h3>
<div class="content">
<div class="private">
<h4><a name="property__contentParent">_contentParent</a>
<code>- private HTMLElement</code>
</h4>
<div class="detail">
<div class="description">
The container of the tabView's content elements.
</div>
</div>
<hr />
</div>
<div class="private">
<h4><a name="property__tabParent">_tabParent</a>
<code>- private HTMLElement</code>
</h4>
<div class="detail">
<div class="description">
The container of the tabView's label elements.
</div>
</div>
<hr />
</div>
<div class="">
<h4><a name="property_CLASSNAME">CLASSNAME</a>
<code>- object</code>
</h4>
<div class="detail">
<div class="description">
The className to add when building from scratch.
</div>
</div>
<div class="default">
Default Value: "navset"
</div>
<hr />
</div>
<div class="">
<h4><a name="property_CONTENT_PARENT_CLASSNAME">CONTENT_PARENT_CLASSNAME</a>
<code>- object</code>
</h4>
<div class="detail">
<div class="description">
The className of the HTMLElement containing the TabView's label elements
to look for when building from existing markup, or to add when building
from scratch.
All childNodes of the content container are treated as content elements when
building from existing markup.
</div>
</div>
<div class="default">
Default Value: "nav-content"
</div>
<hr />
</div>
<div class="">
<h4><a name="property_TAB_PARENT_CLASSNAME">TAB_PARENT_CLASSNAME</a>
<code>- object</code>
</h4>
<div class="detail">
<div class="description">
The className of the HTMLElement containing the TabView's tab elements
to look for when building from existing markup, or to add when building
from scratch.
All childNodes of the tab container are treated as Tabs when building
from existing markup.
</div>
</div>
<div class="default">
Default Value: "nav"
</div>
<hr />
</div>
</div>
</div>
<div class="section field inheritance">
<h4>Properties inherited from <a href="YAHOO.util.Element.html">YAHOO.util.Element</a>:</h4>
<div class="content">
<code>
<a class="" href="YAHOO.util.Element.html#property_DOM_EVENTS">DOM_EVENTS</a>
</code>
</div>
</div>
<div class="section field inheritance">
<h4>Properties inherited from <a href="YAHOO.util.AttributeProvider.html">YAHOO.util.AttributeProvider</a>:</h4>
<div class="content">
<code>
<a class="private" href="YAHOO.util.AttributeProvider.html#property__configs">_configs</a>
</code>
</div>
</div>
<div class="section field inheritance">
<h4>Properties inherited from <a href="YAHOO.util.EventProvider.html">YAHOO.util.EventProvider</a>:</h4>
<div class="content">
<code>
<a class="private" href="YAHOO.util.EventProvider.html#property___yui_events">__yui_events</a><span class="private">,</span>
<a class="private" href="YAHOO.util.EventProvider.html#property___yui_subscribers">__yui_subscribers</a>
</code>
</div>
</div>
<div class="section method details">
<h3 id="methods">Methods</h3>
<div class="content">
<div class="">
<h4>
<a name="method_addTab">addTab</a></h4>
<div class="detail">
<code>
<strong>addTab</strong>
(
tab
,
index
)
</code>
<div class="description">
Adds a Tab to the TabView instance.
If no index is specified, the tab is added to the end of the tab list.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>tab &lt;YAHOO.widget.Tab&gt;</code>
A Tab instance to add.
</dd>
<dd>
<code>index &lt;Integer&gt;</code>
The position to add the tab.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_contentTransition">contentTransition</a></h4>
<div class="detail">
<code>
void
<strong>contentTransition</strong>
(
)
</code>
<div class="description">
The transiton to use when switching between tabs.
</div>
<div class="description">
<dl>
<dt>Returns:
<code>
void
</code></dt>
<dd></dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_DOMEventHandler">DOMEventHandler</a></h4>
<div class="detail">
<code>
<strong>DOMEventHandler</strong>
(
e
)
</code>
<div class="description">
Routes childNode events.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>e &lt;event&gt;</code>
The Dom event that is being handled.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_getTab">getTab</a></h4>
<div class="detail">
<code>
<strong>getTab</strong>
(
index
)
</code>
<div class="description">
Returns the Tab instance at the specified index.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>index &lt;Integer&gt;</code>
The position of the Tab.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_getTabIndex">getTabIndex</a></h4>
<div class="detail">
<code>
<strong>getTabIndex</strong>
(
tab
)
</code>
<div class="description">
Returns the index of given tab.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>tab &lt;YAHOO.widget.Tab&gt;</code>
The tab whose index will be returned.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_initAttributes">initAttributes</a></h4>
<div class="detail">
<code>
void
<strong>initAttributes</strong>
(
attr
)
</code>
<div class="description">
setAttributeConfigs TabView specific properties.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>attr &lt;Object&gt;</code>
Hash of initial attributes
</dd>
</dl>
<dl>
<dt>Returns:
<code>
void
</code></dt>
<dd></dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="private">
<h4>
<a name="method_initTabs">initTabs</a></h4>
<div class="detail">
<code>
private
<strong>initTabs</strong>
(
)
</code>
<div class="description">
Creates Tab instances from a collection of HTMLElements.
</div>
<div class="description">
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_removeTab">removeTab</a></h4>
<div class="detail">
<code>
<strong>removeTab</strong>
(
item
)
</code>
<div class="description">
Removes the specified Tab from the TabView.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>item &lt;YAHOO.widget.Tab&gt;</code>
The Tab instance to be removed.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="method_toString">toString</a></h4>
<div class="detail">
<code>
<strong>toString</strong>
(
)
</code>
<div class="description">
Provides a readable name for the TabView instance.
</div>
<div class="description">
</div>
</div>
<hr />
</div>
</div>
</div>
<div class="section field inheritance">
<h4>Methods inherited from <a href="YAHOO.util.Element.html">YAHOO.util.Element</a>:</h4>
<div class="content">
<code>
<a class="private" href="YAHOO.util.Element.html#method__registerHTMLAttr">_registerHTMLAttr</a><span class="private">,</span> <a class="" href="YAHOO.util.Element.html#method_addClass">addClass</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_addListener">addListener</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_appendChild">appendChild</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_appendTo">appendTo</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_fireQueue">fireQueue</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_getElementsByClassName">getElementsByClassName</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_getElementsByTagName">getElementsByTagName</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_getStyle">getStyle</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_hasChildNodes">hasChildNodes</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_hasClass">hasClass</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_initAttributes">initAttributes</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_insertBefore">insertBefore</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_on">on</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_removeChild">removeChild</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_removeClass">removeClass</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_removeListener">removeListener</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_replaceChild">replaceChild</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_replaceClass">replaceClass</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_setStyle">setStyle</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#method_subscribe">subscribe</a>
</code>
</div>
</div>
<div class="section field inheritance">
<h4>Methods inherited from <a href="YAHOO.util.AttributeProvider.html">YAHOO.util.AttributeProvider</a>:</h4>
<div class="content">
<code>
<a class=" deprecated" href="YAHOO.util.AttributeProvider.html#method_configureAttribute">configureAttribute</a><span class=" deprecated">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_fireBeforeChangeEvent">fireBeforeChangeEvent</a><span class="">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_fireChangeEvent">fireChangeEvent</a><span class="">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_get">get</a><span class="">,</span> <a class="private" href="YAHOO.util.AttributeProvider.html#method_getAttributeConfig">getAttributeConfig</a><span class="private">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_getAttributeKeys">getAttributeKeys</a><span class="">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_refresh">refresh</a><span class="">,</span> <a class=" deprecated" href="YAHOO.util.AttributeProvider.html#method_register">register</a><span class=" deprecated">,</span> <a class="private" href="YAHOO.util.AttributeProvider.html#method_resetAttributeConfig">resetAttributeConfig</a><span class="private">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_resetValue">resetValue</a><span class="">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_set">set</a><span class="">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_setAttributeConfig">setAttributeConfig</a><span class="">,</span> <a class="" href="YAHOO.util.AttributeProvider.html#method_setAttributes">setAttributes</a>
</code>
</div>
</div>
<div class="section field inheritance">
<h4>Methods inherited from <a href="YAHOO.util.EventProvider.html">YAHOO.util.EventProvider</a>:</h4>
<div class="content">
<code>
<a class="" href="YAHOO.util.EventProvider.html#method_createEvent">createEvent</a><span class="">,</span> <a class="" href="YAHOO.util.EventProvider.html#method_fireEvent">fireEvent</a><span class="">,</span> <a class="" href="YAHOO.util.EventProvider.html#method_hasEvent">hasEvent</a><span class="">,</span> <a class="" href="YAHOO.util.EventProvider.html#method_subscribe">subscribe</a><span class="">,</span> <a class="" href="YAHOO.util.EventProvider.html#method_unsubscribe">unsubscribe</a><span class="">,</span> <a class="" href="YAHOO.util.EventProvider.html#method_unsubscribeAll">unsubscribeAll</a>
</code>
</div>
</div>
<div class="section method details">
<h3 id="events">Events</h3>
<div class="content">
<div class="">
<h4>
<a name="event_activeIndexChange">activeIndexChange</a></h4>
<div class="detail">
<code>
<strong>activeIndexChange</strong>
(
event
)
</code>
<div class="description">
Fires when the value for the configuration attribute 'activeIndex' changes.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_activeTabChange">activeTabChange</a></h4>
<div class="detail">
<code>
<strong>activeTabChange</strong>
(
event
)
</code>
<div class="description">
Fires when the value for the configuration attribute 'activeTab' changes.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_beforeActiveIndexChange">beforeActiveIndexChange</a></h4>
<div class="detail">
<code>
<strong>beforeActiveIndexChange</strong>
(
event
)
</code>
<div class="description">
Fires before the value for the configuration attribute 'activeIndex' changes. Return false to cancel the attribute change.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_beforeActiveTabChange">beforeActiveTabChange</a></h4>
<div class="detail">
<code>
<strong>beforeActiveTabChange</strong>
(
event
)
</code>
<div class="description">
Fires before the value for the configuration attribute 'activeTab' changes. Return false to cancel the attribute change.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_beforeOrientationChange">beforeOrientationChange</a></h4>
<div class="detail">
<code>
<strong>beforeOrientationChange</strong>
(
event
)
</code>
<div class="description">
Fires before the value for the configuration attribute 'orientation' changes. Return false to cancel the attribute change.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_beforeTabsChange">beforeTabsChange</a></h4>
<div class="detail">
<code>
<strong>beforeTabsChange</strong>
(
event
)
</code>
<div class="description">
Fires before the value for the configuration attribute 'tabs' changes. Return false to cancel the attribute change.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_orientationChange">orientationChange</a></h4>
<div class="detail">
<code>
<strong>orientationChange</strong>
(
event
)
</code>
<div class="description">
Fires when the value for the configuration attribute 'orientation' changes.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="">
<h4>
<a name="event_tabsChange">tabsChange</a></h4>
<div class="detail">
<code>
<strong>tabsChange</strong>
(
event
)
</code>
<div class="description">
Fires when the value for the configuration attribute 'tabs' changes.
</div>
<div class="description">
<dl>
<dt>Parameters:</dt>
<dd>
<code>event &lt;{oldValue: any, newValue: any}&gt;</code>
An object containing the previous attribute value and the new value.
</dd>
</dl>
</div>
</div>
<hr />
</div>
</div>
</div>
<div class="section field inheritance">
<h4>Events inherited from <a href="YAHOO.util.Element.html">YAHOO.util.Element</a>:</h4>
<div class="content">
<code>
<a class="" href="YAHOO.util.Element.html#event_appendTo">appendTo</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#event_available">available</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#event_beforeAppendTo">beforeAppendTo</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#event_beforeElementChange">beforeElementChange</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#event_contentReady">contentReady</a><span class="">,</span> <a class="" href="YAHOO.util.Element.html#event_elementChange">elementChange</a><span class="">,</span>
</code>
</div>
</div>
<div class="section field details">
<h3 id="configattributes">Configuration Attributes</h3>
<div class="content">
<div class="">
<h4><a name="config_activeIndex">activeIndex</a>
<code>- Int</code>
</h4>
<div class="detail">
<div class="description">
The index of the tab currently active.
</div>
</div>
<hr />
</div>
<div class="">
<h4><a name="config_activeTab">activeTab</a>
<code>- YAHOO.widget.Tab</code>
</h4>
<div class="detail">
<div class="description">
The tab currently active.
</div>
</div>
<hr />
</div>
<div class="">
<h4><a name="config_orientation">orientation</a>
<code>- String</code>
</h4>
<div class="detail">
<div class="description">
How the Tabs should be oriented relative to the TabView.
</div>
</div>
<div class="default">
Default Value: "top"
</div>
<hr />
</div>
<div class="">
<h4><a name="config_tabs">tabs</a>
<code>- Array</code>
</h4>
<div class="detail">
<div class="description">
The Tabs belonging to the TabView instance.
</div>
</div>
<hr />
</div>
</div>
</div>
<div class="section field inheritance">
<h4>Configuration attributes inherited from <a href="YAHOO.util.Element.html">YAHOO.util.Element</a>:</h4>
<div class="content">
<code>
<a class="" href="YAHOO.util.Element.html#config_element">element</a><span class="">,</span>
</code>
</div>
</div>
</div>
</div>
<div class="yui-b">
<div class="nav">
<div class="module">
<h4>Modules</h4>
<ul class="content">
<li class=""><a href="module_animation.html">animation</a></li>
<li class=""><a href="module_autocomplete.html">autocomplete</a></li>
<li class=""><a href="module_button.html">button</a></li>
<li class=""><a href="module_calendar.html">calendar</a></li>
<li class=""><a href="module_carousel.html">carousel</a></li>
<li class=""><a href="module_charts.html">charts</a></li>
<li class=""><a href="module_colorpicker.html">colorpicker</a></li>
<li class=""><a href="module_connection.html">connection</a></li>
<li class=""><a href="module_container.html">container</a></li>
<li class=""><a href="module_cookie.html">cookie</a></li>
<li class=""><a href="module_datasource.html">datasource</a></li>
<li class=""><a href="module_datatable.html">datatable</a></li>
<li class=""><a href="module_dom.html">dom</a></li>
<li class=""><a href="module_dragdrop.html">dragdrop</a></li>
<li class=""><a href="module_editor.html">editor</a></li>
<li class=""><a href="module_element.html">element</a></li>
<li class=""><a href="module_event.html">event</a></li>
<li class=""><a href="module_get.html">get</a></li>
<li class=""><a href="module_history.html">history</a></li>
<li class=""><a href="module_imagecropper.html">imagecropper</a></li>
<li class=""><a href="module_imageloader.html">imageloader</a></li>
<li class=""><a href="module_json.html">json</a></li>
<li class=""><a href="module_layout.html">layout</a></li>
<li class=""><a href="module_logger.html">logger</a></li>
<li class=""><a href="module_menu.html">menu</a></li>
<li class=""><a href="module_paginator.html">paginator</a></li>
<li class=""><a href="module_profiler.html">profiler</a></li>
<li class=""><a href="module_profilerviewer.html">profilerviewer</a></li>
<li class=""><a href="module_resize.html">resize</a></li>
<li class=""><a href="module_selector.html">selector</a></li>
<li class=""><a href="module_slider.html">slider</a></li>
<li class="selected"><a href="module_tabview.html">tabview</a></li>
<li class=""><a href="module_treeview.html">treeview</a></li>
<li class=""><a href="module_uploader.html">uploader</a></li>
<li class=""><a href="module_yahoo.html">yahoo</a></li>
<li class=""><a href="module_yuiloader.html">yuiloader</a></li>
<li class=""><a href="module_yuitest.html">yuitest</a></li>
</ul>
</div>
<div class="module">
<h4>Classes</h4>
<ul class="content">
<li class=""><a href="YAHOO.widget.Tab.html">YAHOO.widget.Tab</a></li>
<li class="selected"><a href="YAHOO.widget.TabView.html">YAHOO.widget.TabView</a></li>
</ul>
</div>
<div class="module">
<h4>Files</h4>
<ul class="content">
<li class=""><a href="Tab.js.html">Tab.js</a></li>
<li class=""><a href="TabView.js.html">TabView.js</a></li>
</ul>
</div>
<div class="module">
<h4>Properties</h4>
<ul class="content">
<li class="private"><a href="#property__contentParent">_contentParent</a>
<!--<code>&lt;object&gt;</code>-->
</li>
<li class="private"><a href="#property__tabParent">_tabParent</a>
<!--<code>&lt;object&gt;</code>-->
</li>
<li class=""><a href="#property_CLASSNAME">CLASSNAME</a>
<!--<code>&lt;object&gt;</code>-->
</li>
<li class=""><a href="#property_CONTENT_PARENT_CLASSNAME">CONTENT_PARENT_CLASSNAME</a>
<!--<code>&lt;object&gt;</code>-->
</li>
<li class=""><a href="#property_TAB_PARENT_CLASSNAME">TAB_PARENT_CLASSNAME</a>
<!--<code>&lt;object&gt;</code>-->
</li>
</ul>
</div>
<div class="module">
<h4>Methods</h4>
<ul class="content">
<li class=""><!--<code></code>-->
<a href="#method_addTab">addTab</a>
</li>
<li class=""><!--<code>void</code>-->
<a href="#method_contentTransition">contentTransition</a>
</li>
<li class=""><!--<code></code>-->
<a href="#method_DOMEventHandler">DOMEventHandler</a>
</li>
<li class=""><!--<code></code>-->
<a href="#method_getTab">getTab</a>
</li>
<li class=""><!--<code></code>-->
<a href="#method_getTabIndex">getTabIndex</a>
</li>
<li class=""><!--<code>void</code>-->
<a href="#method_initAttributes">initAttributes</a>
</li>
<li class="private"><!--<code></code>-->
<a href="#method_initTabs">initTabs</a>
</li>
<li class=""><!--<code></code>-->
<a href="#method_removeTab">removeTab</a>
</li>
<li class=""><!--<code></code>-->
<a href="#method_toString">toString</a>
</li>
</ul>
</div>
<div class="module">
<h4>Events</h4>
<ul class="content">
<li class="">
<a href="#event_activeIndexChange">activeIndexChange</a>
</li>
<li class="">
<a href="#event_activeTabChange">activeTabChange</a>
</li>
<li class="">
<a href="#event_beforeActiveIndexChange">beforeActiveIndexChange</a>
</li>
<li class="">
<a href="#event_beforeActiveTabChange">beforeActiveTabChange</a>
</li>
<li class="">
<a href="#event_beforeOrientationChange">beforeOrientationChange</a>
</li>
<li class="">
<a href="#event_beforeTabsChange">beforeTabsChange</a>
</li>
<li class="">
<a href="#event_orientationChange">orientationChange</a>
</li>
<li class="">
<a href="#event_tabsChange">tabsChange</a>
</li>
</ul>
</div>
<div class="module">
<h4>Configuration Attributes</h4>
<ul class="content">
<li class="">
<a href="#config_activeIndex">activeIndex</a>
</li>
<li class="">
<a href="#config_activeTab">activeTab</a>
</li>
<li class="">
<a href="#config_orientation">orientation</a>
</li>
<li class="">
<a href="#config_tabs">tabs</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="ft">
<hr />
Copyright &copy; 2008 Yahoo! Inc. All rights reserved.
</div>
</div>
</body>
</html>