commit extjs-2.2.1
[extjs.git] / docs / output / Ext.TabPanel.html
1         <div class="body-wrap">
2         <div class="top-tools">
3             <a class="inner-link" href="#Ext.TabPanel-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4             <a class="inner-link" href="#Ext.TabPanel-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5             <a class="inner-link" href="#Ext.TabPanel-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6                             <a class="inner-link" href="#Ext.TabPanel-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7                         <a class="bookmark" href="../docs/?class=Ext.TabPanel"><img src="../resources/images/default/s.gif" class="item-icon icon-fav">Direct Link</a>
8         </div>
9                 <div class="inheritance res-block">
10 <pre class="res-block-inner"><a ext:cls="Ext.util.Observable" ext:member="" href="output/Ext.util.Observable.html">Observable</a>
11   <img src="resources/elbow-end.gif"/><a ext:cls="Ext.Component" ext:member="" href="output/Ext.Component.html">Component</a>
12     <img src="resources/elbow-end.gif"/><a ext:cls="Ext.BoxComponent" ext:member="" href="output/Ext.BoxComponent.html">BoxComponent</a>
13       <img src="resources/elbow-end.gif"/><a ext:cls="Ext.Container" ext:member="" href="output/Ext.Container.html">Container</a>
14         <img src="resources/elbow-end.gif"/><a ext:cls="Ext.Panel" ext:member="" href="output/Ext.Panel.html">Panel</a>
15           <img src="resources/elbow-end.gif"/>TabPanel</pre></div>
16                 <h1>Class Ext.TabPanel</h1>
17         <table cellspacing="0">
18             <tr><td class="label">Package:</td><td class="hd-info">Ext</td></tr>
19             <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../src/TabPanel.js" target="_blank">TabPanel.js</a></td></tr>
20             <tr><td class="label">Class:</td><td class="hd-info">TabPanel</td></tr>
21                                     <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.Panel" ext:member="" href="output/Ext.Panel.html">Panel</a></td></tr>
22                     </table>
23         <div class="description">
24             *
25 <p>A basic tab container. TabPanels can be used exactly like a standard <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Ext.Panel</a> for layout
26 purposes, but also have special support for containing child Components that are managed using a CardLayout
27 layout manager, and displayed as seperate tabs.</p>
28 <p>There is no actual tab class &mdash; each tab is simply an <a ext:cls="Ext.BoxComponent" href="output/Ext.BoxComponent.html">Component</a> such
29 as a <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Panel</a>. However, when rendered in a TabPanel, each child Component can fire
30 additional events that only exist for tabs and are not available from other Component. These are:</p>
31 <ul>
32 <li><b>activate</b>: Fires when this Component becomes the active tab.
33 <div class="mdetail-params">
34 <strong style="font-weight: normal;">Listeners will be called with the following arguments:</strong>
35 <ul><li><code>tab</code> : Panel<div class="sub-desc">The tab that was activated</div></li></ul>
36 </div></li>
37 <li><b>deactivate</b>: Fires when the Component that was the active tab becomes deactivated.
38 <div class="mdetail-params">
39 <strong style="font-weight: normal;">Listeners will be called with the following arguments:</strong>
40 <ul><li><code>tab</code> : Panel<div class="sub-desc">The tab that was deactivated</div></li></ul>
41 </div></li>
42 </ul>
43 <p>To add Components to a TabPanel which are generated dynamically on the server, it is necessary to
44 create a server script to generate the Javascript to create the Component required.</p>
45 For example, to add a GridPanel to a TabPanel where the GridPanel is generated by the server
46 based on certain parameters, you would need to execute an Ajax request to invoke your the script,
47 and process the response object to add it to the TabPanel:</p><pre><code>Ext.Ajax.request({
48     url: <em>'gen-invoice-grid.php'</em>,
49     params: {
50         startDate = Ext.getCmp(<em>'start-date'</em>).getValue(),
51         endDate = Ext.getCmp(<em>'end-date'</em>).getValue()
52     },
53     success: <b>function</b>(xhr) {
54         <b>var</b> newComponent = eval(xhr.responseText);
55         myTabPanel.add(newComponent);
56         myTabPanel.setActiveTab(newComponent);
57     },
58     failure: <b>function</b>() {
59         Ext.Msg.alert(<em>"Grid create failed"</em>, <em>"Server communication failure"</em>);
60     }
61 });</code></pre>
62 <p>The server script would need to return an executable Javascript statement which, when processed
63 using <tt>eval()</tt> will return either a config object with an <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">xtype</a>,
64 or an instantiated Component. For example:</p><pre><code>(<b>function</b>() {
65     <b>function</b> formatDate(value){
66         <b>return</b> value ? value.dateFormat(<em>'M d, Y'</em>) : <em>''</em>;
67     };
68
69     <b>var</b> store = <b>new</b> Ext.data.Store({
70         url: <em>'get-invoice-data.php'</em>,
71         baseParams: {
72             startDate: <em>'01/01/2008'</em>,
73             endDate: <em>'01/31/2008'</em>
74         },
75         reader: <b>new</b> Ext.data.JsonReader({
76             record: <em>'transaction'</em>,
77             id: <em>'id'</em>,
78             totalRecords: <em>'total'</em>
79         }, [
80            <em>'customer'</em>,
81            <em>'invNo'</em>,
82            {name: <em>'date'</em>, type: <em>'date'</em>, dateFormat: <em>'m/d/Y'</em>},
83            {name: <em>'value'</em>, type: <em>'float'</em>}
84         ])
85     });
86
87     <b>var</b> grid = <b>new</b> Ext.grid.GridPanel({
88         title: <em>'Invoice Report'</em>,
89         bbar: <b>new</b> Ext.PagingToolbar(store),
90         store: store,
91         columns: [
92             {header: <em>"Customer"</em>, width: 250, dataIndex: <em>'customer'</em>, sortable: true},
93             {header: <em>"Invoice Number"</em>, width: 120, dataIndex: <em>'invNo'</em>, sortable: true},
94             {header: <em>"Invoice Date"</em>, width: 100, dataIndex: <em>'date'</em>, renderer: formatDate, sortable: true},
95             {header: <em>"Value"</em>, width: 120, dataIndex: <em>'value'</em>, renderer: <em>'usMoney'</em>, sortable: true}
96         ],
97     });
98     store.load();
99     <b>return</b> grid;
100 })();</code></pre>
101 <p>Since that code is <i>generated</i> by a server script, the <tt>baseParams</tt> for the Store
102 can be configured into the Store. The metadata to allow generation of the Record layout, and the
103 ColumnModel is also known on the server, so these can be generated into the code.</p>
104 <p>When that code fragment is passed through the <tt>eval</tt> function in the success handler
105 of the Ajax request, the code is executed by the Javascript processor, and the anonymous function
106 runs, and returns the grid.</p>
107 <p>There are several other methods available for creating TabPanels. The output of the following
108 examples should produce exactly the same appearance. The tabs can be created and rendered completely
109 in code, as in this example:</p>
110 <pre><code>var tabs = <b>new</b> Ext.TabPanel({
111     renderTo: Ext.getBody(),
112     activeTab: 0,
113     items: [{
114         title: <em>'Tab 1'</em>,
115         html: <em>'A simple tab'</em>
116     },{
117         title: <em>'Tab 2'</em>,
118         html: <em>'Another one'</em>
119     }]
120 });</code></pre>
121 <p>TabPanels can also be rendered from pre-existing markup in a couple of ways.  See the <a ext:cls="Ext.TabPanel" ext:member="autoTabs" href="output/Ext.TabPanel.html#autoTabs">autoTabs</a> example for
122 rendering entirely from markup that is already structured correctly as a TabPanel (a container div with
123 one or more nested tab divs with class 'x-tab'). You can also render from markup that is not strictly
124 structured by simply specifying by id which elements should be the container and the tabs. Using this method,
125 tab content can be pulled from different elements within the page by id regardless of page structure.  Note
126 that the tab divs in this example contain the class 'x-hide-display' so that they can be rendered deferred
127 without displaying outside the tabs. You could alternately set <a ext:cls="Ext.TabPanel" ext:member="deferredRender" href="output/Ext.TabPanel.html#deferredRender">deferredRender</a> to false to render all
128 content tabs on page load. For example:
129 <pre><code>var tabs = <b>new</b> Ext.TabPanel({
130     renderTo: <em>'my-tabs'</em>,
131     activeTab: 0,
132     items:[
133         {contentEl:<em>'tab1'</em>, title:<em>'Tab 1'</em>},
134         {contentEl:<em>'tab2'</em>, title:<em>'Tab 2'</em>}
135     ]
136 });
137
138 <i>// Note that the tabs <b>do</b> not have to be nested within the container (although they can be)</i>
139 &lt;div id=<em>"my-tabs"</em>>&lt;/div>
140 &lt;div id=<em>"tab1"</em> class=<em>"x-hide-display"</em>>A simple tab&lt;/div>
141 &lt;div id=<em>"tab2"</em> class=<em>"x-hide-display"</em>>Another one&lt;/div></code></pre>        </div>
142         
143         <div class="hr"></div>
144                 <a id="Ext.TabPanel-configs"></a>
145         <h2>Config Options</h2>
146         <table cellspacing="0" class="member-table">
147             <tr>
148                 <th class="sig-header" colspan="2">Config Options</th>
149                 <th class="msource-header">Defined By</th>
150             </tr>
151                 <tr class="config-row inherited expandable">\r
152         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
153         <td class="sig">\r
154         <a id="Ext.TabPanel-activeItem"></a>\r
155             <b>activeItem</b> : String/Number            <div class="mdesc">\r
156                         <div class="short">A string component id or the numeric index of the component that should be initially activated within the container's...</div>\r
157             <div class="long">\r
158                 A string component id or the numeric index of the component that should be initially activated within the container's layout on render. For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first item in the container's collection). activeItem only applies to layout styles that can display items one at a time (like <a ext:cls="Ext.layout.Accordion" href="output/Ext.layout.Accordion.html">Ext.layout.Accordion</a>, <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a> and <a ext:cls="Ext.layout.FitLayout" href="output/Ext.layout.FitLayout.html">Ext.layout.FitLayout</a>). Related to <a ext:cls="Ext.layout.ContainerLayout" ext:member="activeItem" href="output/Ext.layout.ContainerLayout.html#activeItem">Ext.layout.ContainerLayout.activeItem</a>.            </div>\r
159                         </div>\r
160         </td>\r
161         <td class="msource"><a ext:cls="Ext.Container" ext:member="#activeItem" href="output/Ext.Container.html#activeItem">Container</a></td>\r
162     </tr>\r
163         <tr class="config-row alt">\r
164         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
165         <td class="sig">\r
166         <a id="Ext.TabPanel-activeTab"></a>\r
167             <b>activeTab</b> : String/Number            <div class="mdesc">\r
168                             A string id or the numeric index of the tab that should be initially activated on render (defaults to none).                        </div>\r
169         </td>\r
170         <td class="msource">TabPanel</td>\r
171     </tr>\r
172         <tr class="config-row inherited">\r
173         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
174         <td class="sig">\r
175         <a id="Ext.TabPanel-allowDomMove"></a>\r
176             <b>allowDomMove</b> : Boolean            <div class="mdesc">\r
177                             Whether the component can move the Dom node when rendering (defaults to true).                        </div>\r
178         </td>\r
179         <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>\r
180     </tr>\r
181         <tr class="config-row inherited alt expandable">\r
182         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
183         <td class="sig">\r
184         <a id="Ext.TabPanel-animCollapse"></a>\r
185             <b>animCollapse</b> : Boolean            <div class="mdesc">\r
186                         <div class="short">True to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the Ext....</div>\r
187             <div class="long">\r
188                 True to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the <a ext:cls="Ext.Fx" href="output/Ext.Fx.html">Ext.Fx</a> class is available, otherwise false).            </div>\r
189                         </div>\r
190         </td>\r
191         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#animCollapse" href="output/Ext.Panel.html#animCollapse">Panel</a></td>\r
192     </tr>\r
193         <tr class="config-row expandable">\r
194         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
195         <td class="sig">\r
196         <a id="Ext.TabPanel-animScroll"></a>\r
197             <b>animScroll</b> : Boolean            <div class="mdesc">\r
198                         <div class="short">True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults to true). Only applies when enab...</div>\r
199             <div class="long">\r
200                 True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults to true). Only applies when <a ext:cls="Ext.TabPanel" ext:member="enableTabScroll" href="output/Ext.TabPanel.html#enableTabScroll">enableTabScroll</a> = true.            </div>\r
201                         </div>\r
202         </td>\r
203         <td class="msource">TabPanel</td>\r
204     </tr>\r
205         <tr class="config-row inherited alt expandable">\r
206         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
207         <td class="sig">\r
208         <a id="Ext.TabPanel-applyTo"></a>\r
209             <b>applyTo</b> : Mixed            <div class="mdesc">\r
210                         <div class="short">The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document ...</div>\r
211             <div class="long">\r
212                 The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document that specifies some structural markup for this component. When applyTo is used, constituent parts of the component can also be specified by id or CSS class name within the main element, and the component being created may attempt to create its subcomponents from that markup if applicable. Using this config, a call to render() is not required. If applyTo is specified, any value passed for <a ext:cls="Ext.Component" ext:member="renderTo" href="output/Ext.Component.html#renderTo">renderTo</a> will be ignored and the target element's parent node will automatically be used as the component's container.            </div>\r
213                         </div>\r
214         </td>\r
215         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>\r
216     </tr>\r
217         <tr class="config-row inherited expandable">\r
218         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
219         <td class="sig">\r
220         <a id="Ext.TabPanel-autoDestroy"></a>\r
221             <b>autoDestroy</b> : Boolean            <div class="mdesc">\r
222                         <div class="short">If true the container will automatically destroy any contained component that is removed from it, else destruction mu...</div>\r
223             <div class="long">\r
224                 If true the container will automatically destroy any contained component that is removed from it, else destruction must be handled manually (defaults to true).            </div>\r
225                         </div>\r
226         </td>\r
227         <td class="msource"><a ext:cls="Ext.Container" ext:member="#autoDestroy" href="output/Ext.Container.html#autoDestroy">Container</a></td>\r
228     </tr>\r
229         <tr class="config-row inherited alt expandable">\r
230         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
231         <td class="sig">\r
232         <a id="Ext.TabPanel-autoEl"></a>\r
233             <b>autoEl</b> : String/Object            <div class="mdesc">\r
234                         <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>\r
235             <div class="long">\r
236                 A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inline via JSON. It should not be used for higher level components which already create their own elements. Example usage: <pre><code>{xtype:<em>'box'</em>, autoEl: <em>'div'</em>, cls:<em>'my-class'</em>}
237 {xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>\r
238                         </div>\r
239         </td>\r
240         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>\r
241     </tr>\r
242         <tr class="config-row inherited expandable">\r
243         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
244         <td class="sig">\r
245         <a id="Ext.TabPanel-autoHeight"></a>\r
246             <b>autoHeight</b> : Boolean            <div class="mdesc">\r
247                         <div class="short">True to use height:'auto', false to use fixed height (defaults to false). Note: Although many components inherit this...</div>\r
248             <div class="long">\r
249                 True to use height:'auto', false to use fixed height (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a height of 'auto'. Setting autoHeight:true means that the browser will manage height based on the element's contents, and that Ext will not manage it at all.            </div>\r
250                         </div>\r
251         </td>\r
252         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>\r
253     </tr>\r
254         <tr class="config-row inherited alt expandable">\r
255         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
256         <td class="sig">\r
257         <a id="Ext.TabPanel-autoLoad"></a>\r
258             <b>autoLoad</b> : Object/String/Function            <div class="mdesc">\r
259                         <div class="short">A valid url spec according to the Updater Ext.Updater.update method. If autoLoad is not null, the panel will attempt ...</div>\r
260             <div class="long">\r
261                 A valid url spec according to the Updater <a ext:cls="Ext.Updater" ext:member="update" href="output/Ext.Updater.html#update">Ext.Updater.update</a> method. If autoLoad is not null, the panel will attempt to load its contents immediately upon render.<p> The URL will become the default URL for this panel's <a ext:cls="Ext.Panel" ext:member="body" href="output/Ext.Panel.html#body">body</a> element, so it may be <a ext:cls="Ext.Element" ext:member="refresh" href="output/Ext.Element.html#refresh">refresh</a>ed at any time.</p>            </div>\r
262                         </div>\r
263         </td>\r
264         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#autoLoad" href="output/Ext.Panel.html#autoLoad">Panel</a></td>\r
265     </tr>\r
266         <tr class="config-row inherited expandable">\r
267         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
268         <td class="sig">\r
269         <a id="Ext.TabPanel-autoScroll"></a>\r
270             <b>autoScroll</b> : Boolean            <div class="mdesc">\r
271                         <div class="short">True to use overflow:'auto' on the panel's body element and show scroll bars automatically when necessary, false to c...</div>\r
272             <div class="long">\r
273                 True to use overflow:'auto' on the panel's body element and show scroll bars automatically when necessary, false to clip any overflowing content (defaults to false).            </div>\r
274                         </div>\r
275         </td>\r
276         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#autoScroll" href="output/Ext.Panel.html#autoScroll">Panel</a></td>\r
277     </tr>\r
278         <tr class="config-row inherited alt expandable">\r
279         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
280         <td class="sig">\r
281         <a id="Ext.TabPanel-autoShow"></a>\r
282             <b>autoShow</b> : Boolean            <div class="mdesc">\r
283                         <div class="short">True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render...</div>\r
284             <div class="long">\r
285                 True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render (defaults to false).            </div>\r
286                         </div>\r
287         </td>\r
288         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>\r
289     </tr>\r
290         <tr class="config-row expandable">\r
291         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
292         <td class="sig">\r
293         <a id="Ext.TabPanel-autoTabSelector"></a>\r
294             <b>autoTabSelector</b> : String            <div class="mdesc">\r
295                         <div class="short">The CSS selector used to search for tabs in existing markup when autoTabs = true (defaults to 'div.x-tab'). This can ...</div>\r
296             <div class="long">\r
297                 The CSS selector used to search for tabs in existing markup when <a ext:cls="Ext.TabPanel" ext:member="autoTabs" href="output/Ext.TabPanel.html#autoTabs">autoTabs</a> = true (defaults to 'div.x-tab'). This can be any valid selector supported by <a ext:cls="Ext.DomQuery" ext:member="select" href="output/Ext.DomQuery.html#select">Ext.DomQuery.select</a>. Note that the query will be executed within the scope of this tab panel only (so that multiple tab panels from markup can be supported on a page).            </div>\r
298                         </div>\r
299         </td>\r
300         <td class="msource">TabPanel</td>\r
301     </tr>\r
302         <tr class="config-row alt expandable">\r
303         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
304         <td class="sig">\r
305         <a id="Ext.TabPanel-autoTabs"></a>\r
306             <b>autoTabs</b> : Boolean            <div class="mdesc">\r
307                         <div class="short">True to query the DOM for any divs with a class of 'x-tab' to be automatically converted to tabs and added to this pa...</div>\r
308             <div class="long">\r
309                 <p>True to query the DOM for any divs with a class of 'x-tab' to be automatically converted to tabs and added to this panel (defaults to false). Note that the query will be executed within the scope of the container element only (so that multiple tab panels from markup can be supported via this method).</p> <p>This method is only possible when the markup is structured correctly as a container with nested divs containing the class 'x-tab'. To create TabPanels without these limitations, or to pull tab content from other elements on the page, see the example at the top of the class for generating tabs from markup.</p> <p>There are a couple of things to note when using this method:<ul> <li>When using the autoTabs config (as opposed to passing individual tab configs in the TabPanel's <a ext:cls="Ext.TabPanel" ext:member="items" href="output/Ext.TabPanel.html#items">items</a> collection), you must use <a ext:cls="Ext.TabPanel" ext:member="applyTo" href="output/Ext.TabPanel.html#applyTo">applyTo</a> to correctly use the specified id as the tab container. The autoTabs method <em>replaces</em> existing content with the TabPanel components.</li> <li>Make sure that you set <a ext:cls="Ext.TabPanel" ext:member="deferredRender" href="output/Ext.TabPanel.html#deferredRender">deferredRender</a> to false so that the content elements for each tab will be rendered into the TabPanel immediately upon page load, otherwise they will not be transformed until each tab is activated and will be visible outside the TabPanel.</li> </ul>Example usage:</p> <pre><code>var tabs = <b>new</b> Ext.TabPanel({
310     applyTo: <em>'my-tabs'</em>,
311     activeTab: 0,
312     deferredRender: false,
313     autoTabs: true
314 });
315
316 <i>// This markup will be converted to a TabPanel from the code above</i>
317 &lt;div id=<em>"my-tabs"</em>>
318     &lt;div class=<em>"x-tab"</em> title=<em>"Tab 1"</em>>A simple tab&lt;/div>
319     &lt;div class=<em>"x-tab"</em> title=<em>"Tab 2"</em>>Another one&lt;/div>
320 &lt;/div></code></pre>            </div>\r
321                         </div>\r
322         </td>\r
323         <td class="msource">TabPanel</td>\r
324     </tr>\r
325         <tr class="config-row inherited expandable">\r
326         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
327         <td class="sig">\r
328         <a id="Ext.TabPanel-autoWidth"></a>\r
329             <b>autoWidth</b> : Boolean            <div class="mdesc">\r
330                         <div class="short">True to use width:'auto', false to use fixed width (defaults to false). Note: Although many components inherit this c...</div>\r
331             <div class="long">\r
332                 True to use width:'auto', false to use fixed width (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a width of 'auto'. Setting autoWidth:true means that the browser will manage width based on the element's contents, and that Ext will not manage it at all.            </div>\r
333                         </div>\r
334         </td>\r
335         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>\r
336     </tr>\r
337         <tr class="config-row alt">\r
338         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
339         <td class="sig">\r
340         <a id="Ext.TabPanel-baseCls"></a>\r
341             <b>baseCls</b> : String            <div class="mdesc">\r
342                             The base CSS class applied to the panel (defaults to 'x-tab-panel').                        </div>\r
343         </td>\r
344         <td class="msource">TabPanel</td>\r
345     </tr>\r
346         <tr class="config-row inherited expandable">\r
347         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
348         <td class="sig">\r
349         <a id="Ext.TabPanel-bbar"></a>\r
350             <b>bbar</b> : Object/Array            <div class="mdesc">\r
351                         <div class="short">The bottom toolbar of the panel. This can be either an Ext.Toolbar object or an array of buttons/button configs to be...</div>\r
352             <div class="long">\r
353                 The bottom toolbar of the panel. This can be either an <a ext:cls="Ext.Toolbar" href="output/Ext.Toolbar.html">Ext.Toolbar</a> object or an array of buttons/button configs to be added to the toolbar. Note that this is not available as a property after render. To access the bottom toolbar after render, use <a ext:cls="Ext.Panel" ext:member="getBottomToolbar" href="output/Ext.Panel.html#getBottomToolbar">getBottomToolbar</a>.            </div>\r
354                         </div>\r
355         </td>\r
356         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bbar" href="output/Ext.Panel.html#bbar">Panel</a></td>\r
357     </tr>\r
358         <tr class="config-row inherited alt expandable">\r
359         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
360         <td class="sig">\r
361         <a id="Ext.TabPanel-bodyBorder"></a>\r
362             <b>bodyBorder</b> : Boolean            <div class="mdesc">\r
363                         <div class="short">True to display an interior border on the body element of the panel, false to hide it (defaults to true). This only a...</div>\r
364             <div class="long">\r
365                 True to display an interior border on the body element of the panel, false to hide it (defaults to true). This only applies when <a ext:cls="Ext.Panel" ext:member="border" href="output/Ext.Panel.html#border">border</a> == true. If border == true and bodyBorder == false, the border will display as a 1px wide inset border, giving the entire body element an inset appearance.            </div>\r
366                         </div>\r
367         </td>\r
368         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyBorder" href="output/Ext.Panel.html#bodyBorder">Panel</a></td>\r
369     </tr>\r
370         <tr class="config-row inherited expandable">\r
371         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
372         <td class="sig">\r
373         <a id="Ext.TabPanel-bodyCfg"></a>\r
374             <b>bodyCfg</b> : Object            <div class="mdesc">\r
375                         <div class="short">A DomHelper configuration object specifying the element structure of this Panel's body Element. This may be used to f...</div>\r
376             <div class="long">\r
377                 <p>A <a ext:cls="Ext.DomHelper" href="output/Ext.DomHelper.html">DomHelper</a> configuration object specifying the element structure of this Panel's <a ext:cls="Ext.Panel" ext:member="body" href="output/Ext.Panel.html#body">body</a> Element.</p> <p>This may be used to force the body Element to use a different form of markup than is created automatically. An example of this might be to create a child Panel containing custom content, such as a header, or forcing centering of all Panel content by having the body be a &lt;center&gt; element:</p><code><pre>new Ext.Panel({\r
378     title: 'New Message',\r
379     collapsible: true,\r
380     renderTo: Ext.getBody(),\r
381     width: 400,\r
382     bodyCfg: {\r
383         tag: 'center',\r
384         cls: 'x-panel-body'\r
385     },\r
386     items: [{\r
387         border: false,\r
388         header: false,\r
389         bodyCfg: {tag: 'h2', html: 'Message'}\r
390     }, {\r
391         xtype: 'textarea',\r
392         style: {\r
393             width: '95%',\r
394             marginBottom: '10px'\r
395         }\r
396     },\r
397         new Ext.Button({\r
398             text: 'Send',\r
399             minWidth: '100',\r
400             style: {\r
401                 marginBottom: '10px'\r
402             }\r
403         })\r
404     ]\r
405 });</pre></code>            </div>\r
406                         </div>\r
407         </td>\r
408         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyCfg" href="output/Ext.Panel.html#bodyCfg">Panel</a></td>\r
409     </tr>\r
410         <tr class="config-row inherited alt expandable">\r
411         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
412         <td class="sig">\r
413         <a id="Ext.TabPanel-bodyStyle"></a>\r
414             <b>bodyStyle</b> : String/Object/Function            <div class="mdesc">\r
415                         <div class="short">Custom CSS styles to be applied to the body element in the format expected by Ext.Element.applyStyles (defaults to nu...</div>\r
416             <div class="long">\r
417                 Custom CSS styles to be applied to the body element in the format expected by <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a> (defaults to null).            </div>\r
418                         </div>\r
419         </td>\r
420         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyStyle" href="output/Ext.Panel.html#bodyStyle">Panel</a></td>\r
421     </tr>\r
422         <tr class="config-row inherited expandable">\r
423         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
424         <td class="sig">\r
425         <a id="Ext.TabPanel-border"></a>\r
426             <b>border</b> : Boolean            <div class="mdesc">\r
427                         <div class="short">True to display the borders of the panel's body element, false to hide them (defaults to true). By default, the borde...</div>\r
428             <div class="long">\r
429                 True to display the borders of the panel's body element, false to hide them (defaults to true). By default, the border is a 2px wide inset border, but this can be further altered by setting <a ext:cls="Ext.Panel" ext:member="bodyBorder" href="output/Ext.Panel.html#bodyBorder">bodyBorder</a> to false.            </div>\r
430                         </div>\r
431         </td>\r
432         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#border" href="output/Ext.Panel.html#border">Panel</a></td>\r
433     </tr>\r
434         <tr class="config-row inherited alt expandable">\r
435         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
436         <td class="sig">\r
437         <a id="Ext.TabPanel-bufferResize"></a>\r
438             <b>bufferResize</b> : Boolean/Number            <div class="mdesc">\r
439                         <div class="short">When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer t...</div>\r
440             <div class="long">\r
441                 When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer the frequency it calculates and does a re-layout of components. This is useful for heavy containers or containers with a large quantity of sub-components for which frequent layout calls would be expensive.            </div>\r
442                         </div>\r
443         </td>\r
444         <td class="msource"><a ext:cls="Ext.Container" ext:member="#bufferResize" href="output/Ext.Container.html#bufferResize">Container</a></td>\r
445     </tr>\r
446         <tr class="config-row inherited">\r
447         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
448         <td class="sig">\r
449         <a id="Ext.TabPanel-buttonAlign"></a>\r
450             <b>buttonAlign</b> : String            <div class="mdesc">\r
451                             The alignment of any buttons added to this panel. Valid values are 'right,' 'left' and 'center' (defaults to 'right').                        </div>\r
452         </td>\r
453         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttonAlign" href="output/Ext.Panel.html#buttonAlign">Panel</a></td>\r
454     </tr>\r
455         <tr class="config-row inherited alt">\r
456         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
457         <td class="sig">\r
458         <a id="Ext.TabPanel-buttons"></a>\r
459             <b>buttons</b> : Array            <div class="mdesc">\r
460                             An array of <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a>s or <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a> configs used to add buttons to the footer of this panel.                        </div>\r
461         </td>\r
462         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttons" href="output/Ext.Panel.html#buttons">Panel</a></td>\r
463     </tr>\r
464         <tr class="config-row inherited expandable">\r
465         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
466         <td class="sig">\r
467         <a id="Ext.TabPanel-clearCls"></a>\r
468             <b>clearCls</b> : String            <div class="mdesc">\r
469                         <div class="short">The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). This config is only used when this Co...</div>\r
470             <div class="long">\r
471                 The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p>            </div>\r
472                         </div>\r
473         </td>\r
474         <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>\r
475     </tr>\r
476         <tr class="config-row inherited alt expandable">\r
477         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
478         <td class="sig">\r
479         <a id="Ext.TabPanel-cls"></a>\r
480             <b>cls</b> : String            <div class="mdesc">\r
481                         <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>\r
482             <div class="long">\r
483                 An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>\r
484                         </div>\r
485         </td>\r
486         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>\r
487     </tr>\r
488         <tr class="config-row inherited expandable">\r
489         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
490         <td class="sig">\r
491         <a id="Ext.TabPanel-collapseFirst"></a>\r
492             <b>collapseFirst</b> : Boolean            <div class="mdesc">\r
493                         <div class="short">True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the pane...</div>\r
494             <div class="long">\r
495                 True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the panel's title bar, false to render it last (defaults to true).            </div>\r
496                         </div>\r
497         </td>\r
498         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapseFirst" href="output/Ext.Panel.html#collapseFirst">Panel</a></td>\r
499     </tr>\r
500         <tr class="config-row inherited alt">\r
501         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
502         <td class="sig">\r
503         <a id="Ext.TabPanel-collapsedCls"></a>\r
504             <b>collapsedCls</b> : String            <div class="mdesc">\r
505                             A CSS class to add to the panel's element after it has been collapsed (defaults to 'x-panel-collapsed').                        </div>\r
506         </td>\r
507         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsedCls" href="output/Ext.Panel.html#collapsedCls">Panel</a></td>\r
508     </tr>\r
509         <tr class="config-row inherited expandable">\r
510         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
511         <td class="sig">\r
512         <a id="Ext.TabPanel-contentEl"></a>\r
513             <b>contentEl</b> : String            <div class="mdesc">\r
514                         <div class="short">The id of an existing HTML node to use as the panel's body content (defaults to ''). The specified Element is appende...</div>\r
515             <div class="long">\r
516                 The id of an existing HTML node to use as the panel's body content (defaults to ''). The specified Element is appended to the Panel's body Element by the Panel's afterRender method <i>after any configured <a ext:cls="Ext.Panel" ext:member="html" href="output/Ext.Panel.html#html">HTML</a> has been inserted</i>, and so the document will not contain this HTML at the time the render event is fired.            </div>\r
517                         </div>\r
518         </td>\r
519         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#contentEl" href="output/Ext.Panel.html#contentEl">Panel</a></td>\r
520     </tr>\r
521         <tr class="config-row inherited alt expandable">\r
522         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
523         <td class="sig">\r
524         <a id="Ext.TabPanel-ctCls"></a>\r
525             <b>ctCls</b> : String            <div class="mdesc">\r
526                         <div class="short">An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for...</div>\r
527             <div class="long">\r
528                 An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.            </div>\r
529                         </div>\r
530         </td>\r
531         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>\r
532     </tr>\r
533         <tr class="config-row inherited expandable">\r
534         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
535         <td class="sig">\r
536         <a id="Ext.TabPanel-defaultType"></a>\r
537             <b>defaultType</b> : String            <div class="mdesc">\r
538                         <div class="short">The default xtype of child Components to create in this Container when a child item is specified as a raw configurati...</div>\r
539             <div class="long">\r
540                 <p>The default <a ext:cls="Ext.Component" href="output/Ext.Component.html">xtype</a> of child Components to create in this Container when a child item is specified as a raw configuration object, rather than as an instantiated Component.</p> <p>Defaults to 'panel'.</p>            </div>\r
541                         </div>\r
542         </td>\r
543         <td class="msource"><a ext:cls="Ext.Container" ext:member="#defaultType" href="output/Ext.Container.html#defaultType">Container</a></td>\r
544     </tr>\r
545         <tr class="config-row inherited alt expandable">\r
546         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
547         <td class="sig">\r
548         <a id="Ext.TabPanel-defaults"></a>\r
549             <b>defaults</b> : Object            <div class="mdesc">\r
550                         <div class="short">A config object that will be applied to all components added to this container either via the items config or via the...</div>\r
551             <div class="long">\r
552                 A config object that will be applied to all components added to this container either via the <a ext:cls="Ext.Container" ext:member="items" href="output/Ext.Container.html#items">items</a> config or via the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> or <a ext:cls="Ext.Container" ext:member="insert" href="output/Ext.Container.html#insert">insert</a> methods. The defaults config can contain any number of name/value property pairs to be added to each item, and should be valid for the types of items being added to the container. For example, to automatically apply padding to the body of each of a set of contained <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Ext.Panel</a> items, you could pass: defaults: {bodyStyle:'padding:15px'}.            </div>\r
553                         </div>\r
554         </td>\r
555         <td class="msource"><a ext:cls="Ext.Container" ext:member="#defaults" href="output/Ext.Container.html#defaults">Container</a></td>\r
556     </tr>\r
557         <tr class="config-row expandable">\r
558         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
559         <td class="sig">\r
560         <a id="Ext.TabPanel-deferredRender"></a>\r
561             <b>deferredRender</b> : Boolean            <div class="mdesc">\r
562                         <div class="short">Internally, the TabPanel uses a Ext.layout.CardLayout to manage its tabs. This property will be passed on to the layo...</div>\r
563             <div class="long">\r
564                 Internally, the TabPanel uses a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a> to manage its tabs. This property will be passed on to the layout as its <a ext:cls="Ext.layout.CardLayout" ext:member="deferredRender" href="output/Ext.layout.CardLayout.html#deferredRender">Ext.layout.CardLayout.deferredRender</a> config value, determining whether or not each tab is rendered only when first accessed (defaults to true). <p>Be aware that leaving deferredRender as <b><tt>true</tt></b> means that, if the TabPanel is within a <a ext:cls="Ext.form.FormPanel" href="output/Ext.form.FormPanel.html">form</a>, then until a tab is activated, any Fields within that tab will not be rendered, and will therefore not be submitted and will not be available to either <a ext:cls="Ext.form.BasicForm" ext:member="getValues" href="output/Ext.form.BasicForm.html#getValues">getValues</a> or <a ext:cls="Ext.form.BasicForm" ext:member="setValues" href="output/Ext.form.BasicForm.html#setValues">setValues</a>.</p>            </div>\r
565                         </div>\r
566         </td>\r
567         <td class="msource">TabPanel</td>\r
568     </tr>\r
569         <tr class="config-row inherited alt">\r
570         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
571         <td class="sig">\r
572         <a id="Ext.TabPanel-disabled"></a>\r
573             <b>disabled</b> : Boolean            <div class="mdesc">\r
574                             Render this component disabled (default is false).                        </div>\r
575         </td>\r
576         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
577     </tr>\r
578         <tr class="config-row inherited">\r
579         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
580         <td class="sig">\r
581         <a id="Ext.TabPanel-disabledClass"></a>\r
582             <b>disabledClass</b> : String            <div class="mdesc">\r
583                             CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>\r
584         </td>\r
585         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>\r
586     </tr>\r
587         <tr class="config-row inherited alt expandable">\r
588         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
589         <td class="sig">\r
590         <a id="Ext.TabPanel-draggable"></a>\r
591             <b>draggable</b> : Boolean            <div class="mdesc">\r
592                         <div class="short">True to enable dragging of this Panel (defaults to false). For custom drag/drop implementations, an Ext.Panel.DD conf...</div>\r
593             <div class="long">\r
594                 <p>True to enable dragging of this Panel (defaults to false).</p> <p>For custom drag/drop implementations, an Ext.Panel.DD config could also be passed in this config instead of true. Ext.Panel.DD is an internal, undocumented class which moves a proxy Element around in place of the Panel's element, but provides no other behaviour during dragging or on drop. It is a subclass of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a>, so behaviour may be added by implementing the interface methods of <a ext:cls="Ext.dd.DragDrop" href="output/Ext.dd.DragDrop.html">Ext.dd.DragDrop</a> eg: <pre><code>new Ext.Panel({
595     title: <em>'Drag me'</em>,
596     x: 100,
597     y: 100,
598     renderTo: Ext.getBody(),
599     floating: true,
600     frame: true,
601     width: 400,
602     height: 200,
603     draggable: {
604 <i>//      Config option of Ext.Panel.DD class.</i>
605 <i>//      It's a floating Panel, so <b>do</b> not show a placeholder proxy <b>in</b> the original position.</i>
606         insertProxy: false,
607
608 <i>//      Called <b>for</b> each mousemove event <b>while</b> dragging the DD object.</i>
609         onDrag : <b>function</b>(e){
610 <i>//          Record the x,y position of the drag proxy so that we can</i>
611 <i>//          position the Panel at end of drag.</i>
612             <b>var</b> pel = <b>this</b>.proxy.getEl();
613             <b>this</b>.x = pel.getLeft(true);
614             <b>this</b>.y = pel.getTop(true);
615
616 <i>//          Keep the Shadow aligned <b>if</b> there is one.</i>
617             <b>var</b> s = <b>this</b>.panel.getEl().shadow;
618             <b>if</b> (s) {
619                 s.realign(<b>this</b>.x, <b>this</b>.y, pel.getWidth(), pel.getHeight());
620             }
621         },
622
623 <i>//      Called on the mouseup event.</i>
624         endDrag : <b>function</b>(e){
625             <b>this</b>.panel.setPosition(<b>this</b>.x, <b>this</b>.y);
626         }
627     }
628 }).show();</code></pre>            </div>\r
629                         </div>\r
630         </td>\r
631         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#draggable" href="output/Ext.Panel.html#draggable">Panel</a></td>\r
632     </tr>\r
633         <tr class="config-row inherited expandable">\r
634         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
635         <td class="sig">\r
636         <a id="Ext.TabPanel-elements"></a>\r
637             <b>elements</b> : String            <div class="mdesc">\r
638                         <div class="short">A comma-delimited list of panel elements to initialize when the panel is rendered. Normally, this list will be genera...</div>\r
639             <div class="long">\r
640                 A comma-delimited list of panel elements to initialize when the panel is rendered. Normally, this list will be generated automatically based on the items added to the panel at config time, but sometimes it might be useful to make sure a structural element is rendered even if not specified at config time (for example, you may want to add a button or toolbar dynamically after the panel has been rendered). Adding those elements to this list will allocate the required placeholders in the panel when it is rendered. Valid values are<ul> <li><b>header</b></li> <li><b>tbar</b> (top bar)</li> <li><b>body</b> (required)</li> <li><b>bbar</b> (bottom bar)</li> <li><b>footer</b><li> </ul> Defaults to 'body'.            </div>\r
641                         </div>\r
642         </td>\r
643         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#elements" href="output/Ext.Panel.html#elements">Panel</a></td>\r
644     </tr>\r
645         <tr class="config-row alt expandable">\r
646         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
647         <td class="sig">\r
648         <a id="Ext.TabPanel-enableTabScroll"></a>\r
649             <b>enableTabScroll</b> : Boolean            <div class="mdesc">\r
650                         <div class="short">True to enable scrolling to tabs that may be invisible due to overflowing the overall TabPanel width. Only available ...</div>\r
651             <div class="long">\r
652                 True to enable scrolling to tabs that may be invisible due to overflowing the overall TabPanel width. Only available with tabPosition:'top' (defaults to false).            </div>\r
653                         </div>\r
654         </td>\r
655         <td class="msource">TabPanel</td>\r
656     </tr>\r
657         <tr class="config-row inherited expandable">\r
658         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
659         <td class="sig">\r
660         <a id="Ext.TabPanel-fieldLabel"></a>\r
661             <b>fieldLabel</b> : String            <div class="mdesc">\r
662                         <div class="short">The label text to display next to this Component (defaults to '') This config is only used when this Component is ren...</div>\r
663             <div class="long">\r
664                 The label text to display next to this Component (defaults to '') <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
665     height: 100,
666     renderTo: Ext.getBody(),
667     items: [{
668         xtype: <em>'textfield'</em>,
669         fieldLabel: <em>'Name'</em>
670     }]
671 });</code></pre>            </div>\r
672                         </div>\r
673         </td>\r
674         <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>\r
675     </tr>\r
676         <tr class="config-row inherited alt expandable">\r
677         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
678         <td class="sig">\r
679         <a id="Ext.TabPanel-floating"></a>\r
680             <b>floating</b> : Boolean            <div class="mdesc">\r
681                         <div class="short">True to float the panel (absolute position it with automatic shimming and shadow), false to display it inline where i...</div>\r
682             <div class="long">\r
683                 True to float the panel (absolute position it with automatic shimming and shadow), false to display it inline where it is rendered (defaults to false). Note that by default, setting floating to true will cause the panel to display at negative offsets so that it is hidden -- because the panel is absolute positioned, the position must be set explicitly after render (e.g., myPanel.setPosition(100,100);). Also, when floating a panel you should always assign a fixed width, otherwise it will be auto width and will expand to fill to the right edge of the viewport.            </div>\r
684                         </div>\r
685         </td>\r
686         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#floating" href="output/Ext.Panel.html#floating">Panel</a></td>\r
687     </tr>\r
688         <tr class="config-row inherited expandable">\r
689         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
690         <td class="sig">\r
691         <a id="Ext.TabPanel-footer"></a>\r
692             <b>footer</b> : Boolean            <div class="mdesc">\r
693                         <div class="short">True to create the footer element explicitly, false to skip creating it. By default, when footer is not specified, if...</div>\r
694             <div class="long">\r
695                 True to create the footer element explicitly, false to skip creating it. By default, when footer is not specified, if one or more buttons have been added to the panel the footer will be created automatically, otherwise it will not.            </div>\r
696                         </div>\r
697         </td>\r
698         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#footer" href="output/Ext.Panel.html#footer">Panel</a></td>\r
699     </tr>\r
700         <tr class="config-row inherited alt">\r
701         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
702         <td class="sig">\r
703         <a id="Ext.TabPanel-frame"></a>\r
704             <b>frame</b> : Boolean            <div class="mdesc">\r
705                             True to render the panel with custom rounded borders, false to render with plain 1px square borders (defaults to false).                        </div>\r
706         </td>\r
707         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#frame" href="output/Ext.Panel.html#frame">Panel</a></td>\r
708     </tr>\r
709         <tr class="config-row inherited">\r
710         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
711         <td class="sig">\r
712         <a id="Ext.TabPanel-height"></a>\r
713             <b>height</b> : Number            <div class="mdesc">\r
714                             The height of this component in pixels (defaults to auto).                        </div>\r
715         </td>\r
716         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>\r
717     </tr>\r
718         <tr class="config-row inherited alt">\r
719         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
720         <td class="sig">\r
721         <a id="Ext.TabPanel-hidden"></a>\r
722             <b>hidden</b> : Boolean            <div class="mdesc">\r
723                             Render this component hidden (default is false).                        </div>\r
724         </td>\r
725         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
726     </tr>\r
727         <tr class="config-row inherited expandable">\r
728         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
729         <td class="sig">\r
730         <a id="Ext.TabPanel-hideBorders"></a>\r
731             <b>hideBorders</b> : Boolean            <div class="mdesc">\r
732                         <div class="short">True to hide the borders of each contained component, false to defer to the component's existing border settings (def...</div>\r
733             <div class="long">\r
734                 True to hide the borders of each contained component, false to defer to the component's existing border settings (defaults to false).            </div>\r
735                         </div>\r
736         </td>\r
737         <td class="msource"><a ext:cls="Ext.Container" ext:member="#hideBorders" href="output/Ext.Container.html#hideBorders">Container</a></td>\r
738     </tr>\r
739         <tr class="config-row inherited alt expandable">\r
740         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
741         <td class="sig">\r
742         <a id="Ext.TabPanel-hideLabel"></a>\r
743             <b>hideLabel</b> : Boolean            <div class="mdesc">\r
744                         <div class="short">True to completely hide the label element (defaults to false). By default, even if you do not specify a fieldLabel th...</div>\r
745             <div class="long">\r
746                 True to completely hide the label element (defaults to false). By default, even if you do not specify a <a ext:cls="fieldLabel" href="output/fieldLabel.html">fieldLabel</a> the space will still be reserved so that the field will line up with other fields that do have labels. Setting this to true will cause the field to not reserve that space. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
747     height: 100,
748     renderTo: Ext.getBody(),
749     items: [{
750         xtype: <em>'textfield'</em>
751         hideLabel: true
752     }]
753 });</code></pre>            </div>\r
754                         </div>\r
755         </td>\r
756         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>\r
757     </tr>\r
758         <tr class="config-row inherited expandable">\r
759         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
760         <td class="sig">\r
761         <a id="Ext.TabPanel-hideMode"></a>\r
762             <b>hideMode</b> : String            <div class="mdesc">\r
763                         <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>\r
764             <div class="long">\r
765                 <p>How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".</p> <p>For Containers which may be hidden and shown as part of a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">card layout</a> Container such as a <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">TabPanel</a>, it is recommended that hideMode is configured as "offsets". This ensures that hidden Components still have height and width so that layout managers can perform measurements when calculating layouts.</p>            </div>\r
766                         </div>\r
767         </td>\r
768         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>\r
769     </tr>\r
770         <tr class="config-row inherited alt expandable">\r
771         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
772         <td class="sig">\r
773         <a id="Ext.TabPanel-hideParent"></a>\r
774             <b>hideParent</b> : Boolean            <div class="mdesc">\r
775                         <div class="short">True to hide and show the component's container when hide/show is called on the component, false to hide and show the...</div>\r
776             <div class="long">\r
777                 True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide button on a window by setting hide:true on the button when adding it to its parent container.            </div>\r
778                         </div>\r
779         </td>\r
780         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>\r
781     </tr>\r
782         <tr class="config-row inherited expandable">\r
783         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
784         <td class="sig">\r
785         <a id="Ext.TabPanel-html"></a>\r
786             <b>html</b> : String/Object            <div class="mdesc">\r
787                         <div class="short">An HTML fragment, or a DomHelper specification to use as the panel's body content (defaults to ''). The HTML content ...</div>\r
788             <div class="long">\r
789                 An HTML fragment, or a <a ext:cls="Ext.DomHelper" href="output/Ext.DomHelper.html">DomHelper</a> specification to use as the panel's body content (defaults to ''). The HTML content is added by the Panel's afterRender method, and so the document will not contain this HTML at the time the render event is fired. This content is inserted into the body <i>before</i> any configured <a ext:cls="Ext.Panel" ext:member="contentEl" href="output/Ext.Panel.html#contentEl">contentEl</a> is appended.            </div>\r
790                         </div>\r
791         </td>\r
792         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#html" href="output/Ext.Panel.html#html">Panel</a></td>\r
793     </tr>\r
794         <tr class="config-row inherited alt expandable">\r
795         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
796         <td class="sig">\r
797         <a id="Ext.TabPanel-iconCls"></a>\r
798             <b>iconCls</b> : String            <div class="mdesc">\r
799                         <div class="short">A CSS class that will provide a background image to be used as the header icon (defaults to ''). An example custom ic...</div>\r
800             <div class="long">\r
801                 A CSS class that will provide a background image to be used as the header icon (defaults to ''). An example custom icon class would be something like: .my-icon { background: url(../images/my-icon.gif) 0 6px no-repeat !important;}            </div>\r
802                         </div>\r
803         </td>\r
804         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#iconCls" href="output/Ext.Panel.html#iconCls">Panel</a></td>\r
805     </tr>\r
806         <tr class="config-row inherited expandable">\r
807         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
808         <td class="sig">\r
809         <a id="Ext.TabPanel-id"></a>\r
810             <b>id</b> : String            <div class="mdesc">\r
811                         <div class="short">The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to ...</div>\r
812             <div class="long">\r
813                 The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to access the component later and you do not have an object reference available (e.g., using <a ext:cls="Ext.ComponentMgr" ext:member="getCmp" href="output/Ext.ComponentMgr.html#getCmp">Ext.ComponentMgr.getCmp</a>). Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.            </div>\r
814                         </div>\r
815         </td>\r
816         <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>\r
817     </tr>\r
818         <tr class="config-row inherited alt expandable">\r
819         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
820         <td class="sig">\r
821         <a id="Ext.TabPanel-itemCls"></a>\r
822             <b>itemCls</b> : String            <div class="mdesc">\r
823                         <div class="short">An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCl...</div>\r
824             <div class="long">\r
825                 An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCls value if set, or ''). Since it is applied to the item wrapper, it allows you to write standard CSS rules that can apply to the field, the label (if specified) or any other element within the markup for the field. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code><i>// Apply a style to the field's label:</i>
826 &lt;style>
827     .required .x-form-item-label {font-weight:bold;color:red;}
828 &lt;/style>
829
830 <b>new</b> Ext.FormPanel({
831     height: 100,
832     renderTo: Ext.getBody(),
833     items: [{
834         xtype: <em>'textfield'</em>,
835         fieldLabel: <em>'Name'</em>,
836         itemCls: <em>'required'</em> <i>//<b>this</b> label will be styled</i>
837     },{
838         xtype: <em>'textfield'</em>,
839         fieldLabel: <em>'Favorite Color'</em>
840     }]
841 });</code></pre>            </div>\r
842                         </div>\r
843         </td>\r
844         <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>\r
845     </tr>\r
846         <tr class="config-row inherited expandable">\r
847         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
848         <td class="sig">\r
849         <a id="Ext.TabPanel-items"></a>\r
850             <b>items</b> : Mixed            <div class="mdesc">\r
851                         <div class="short">A single item, or an array of child Components to be added to this container. Each item can be any type of object bas...</div>\r
852             <div class="long">\r
853                 A single item, or an array of child Components to be added to this container. Each item can be any type of object based on <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.<br><br> Component config objects may also be specified in order to avoid the overhead of constructing a real Component object if lazy rendering might mean that the added Component will not be rendered immediately. To take advantage of this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config property to the registered type of the Component wanted.<br><br> For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>. If a single item is being passed, it should be passed directly as an object reference (e.g., items: {...}). Multiple items should be passed as an array of objects (e.g., items: [{...}, {...}]).            </div>\r
854                         </div>\r
855         </td>\r
856         <td class="msource"><a ext:cls="Ext.Container" ext:member="#items" href="output/Ext.Container.html#items">Container</a></td>\r
857     </tr>\r
858         <tr class="config-row inherited alt expandable">\r
859         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
860         <td class="sig">\r
861         <a id="Ext.TabPanel-keys"></a>\r
862             <b>keys</b> : Object/Array            <div class="mdesc">\r
863                         <div class="short">A KeyMap config object (in the format expected by Ext.KeyMap.addBinding used to assign custom key handling to this pa...</div>\r
864             <div class="long">\r
865                 A KeyMap config object (in the format expected by <a ext:cls="Ext.KeyMap" ext:member="addBinding" href="output/Ext.KeyMap.html#addBinding">Ext.KeyMap.addBinding</a> used to assign custom key handling to this panel (defaults to null).            </div>\r
866                         </div>\r
867         </td>\r
868         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#keys" href="output/Ext.Panel.html#keys">Panel</a></td>\r
869     </tr>\r
870         <tr class="config-row inherited expandable">\r
871         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
872         <td class="sig">\r
873         <a id="Ext.TabPanel-labelSeparator"></a>\r
874             <b>labelSeparator</b> : String            <div class="mdesc">\r
875                         <div class="short">The standard separator to display after the text of each form label (defaults to the value of Ext.layout.FormLayout.l...</div>\r
876             <div class="long">\r
877                 The standard separator to display after the text of each form label (defaults to the value of <a ext:cls="Ext.layout.FormLayout" ext:member="labelSeparator" href="output/Ext.layout.FormLayout.html#labelSeparator">Ext.layout.FormLayout.labelSeparator</a>, which is a colon ':' by default). To display no separator for this field's label specify empty string ''. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
878     height: 100,
879     renderTo: Ext.getBody(),
880     items: [{
881         xtype: <em>'textfield'</em>,
882         fieldLabel: <em>'Name'</em>,
883         labelSeparator: <em>'...'</em>
884     }]
885 });</code></pre>            </div>\r
886                         </div>\r
887         </td>\r
888         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>\r
889     </tr>\r
890         <tr class="config-row inherited alt expandable">\r
891         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
892         <td class="sig">\r
893         <a id="Ext.TabPanel-labelStyle"></a>\r
894             <b>labelStyle</b> : String            <div class="mdesc">\r
895                         <div class="short">A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if se...</div>\r
896             <div class="long">\r
897                 A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if set, or '').<code></code>. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
898     height: 100,
899     renderTo: Ext.getBody(),
900     items: [{
901         xtype: <em>'textfield'</em>,
902         fieldLabel: <em>'Name'</em>,
903         labelStyle: <em>'font-weight:bold;'</em>
904     }]
905 });</code></pre>            </div>\r
906                         </div>\r
907         </td>\r
908         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>\r
909     </tr>\r
910         <tr class="config-row">\r
911         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
912         <td class="sig">\r
913         <a id="Ext.TabPanel-layoutOnTabChange"></a>\r
914             <b>layoutOnTabChange</b> : Boolean            <div class="mdesc">\r
915                             Set to true to do a layout of tab items as tabs are changed.                        </div>\r
916         </td>\r
917         <td class="msource">TabPanel</td>\r
918     </tr>\r
919         <tr class="config-row inherited alt expandable">\r
920         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
921         <td class="sig">\r
922         <a id="Ext.TabPanel-listeners"></a>\r
923             <b>listeners</b> : Object            <div class="mdesc">\r
924                         <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>\r
925             <div class="long">\r
926                 (optional) A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the <a ext:cls="Ext.util.Observable" ext:member="addListener" href="output/Ext.util.Observable.html#addListener">addListener</a> example for attaching multiple handlers at once.            </div>\r
927                         </div>\r
928         </td>\r
929         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>\r
930     </tr>\r
931         <tr class="config-row inherited expandable">\r
932         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
933         <td class="sig">\r
934         <a id="Ext.TabPanel-maskDisabled"></a>\r
935             <b>maskDisabled</b> : Boolean            <div class="mdesc">\r
936                         <div class="short">True to mask the panel when it is disabled, false to not mask it (defaults to true). Either way, the panel will alway...</div>\r
937             <div class="long">\r
938                 True to mask the panel when it is disabled, false to not mask it (defaults to true). Either way, the panel will always tell its contained elements to disable themselves when it is disabled, but masking the panel can provide an additional visual cue that the panel is disabled.            </div>\r
939                         </div>\r
940         </td>\r
941         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#maskDisabled" href="output/Ext.Panel.html#maskDisabled">Panel</a></td>\r
942     </tr>\r
943         <tr class="config-row inherited alt">\r
944         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
945         <td class="sig">\r
946         <a id="Ext.TabPanel-minButtonWidth"></a>\r
947             <b>minButtonWidth</b> : Number            <div class="mdesc">\r
948                             Minimum width in pixels of all buttons in this panel (defaults to 75)                        </div>\r
949         </td>\r
950         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#minButtonWidth" href="output/Ext.Panel.html#minButtonWidth">Panel</a></td>\r
951     </tr>\r
952         <tr class="config-row">\r
953         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
954         <td class="sig">\r
955         <a id="Ext.TabPanel-minTabWidth"></a>\r
956             <b>minTabWidth</b> : Number            <div class="mdesc">\r
957                             The minimum width in pixels for each tab when <a ext:cls="Ext.TabPanel" ext:member="resizeTabs" href="output/Ext.TabPanel.html#resizeTabs">resizeTabs</a> = true (defaults to 30).                        </div>\r
958         </td>\r
959         <td class="msource">TabPanel</td>\r
960     </tr>\r
961         <tr class="config-row alt">\r
962         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
963         <td class="sig">\r
964         <a id="Ext.TabPanel-monitorResize"></a>\r
965             <b>monitorResize</b> : Boolean            <div class="mdesc">\r
966                             True to automatically monitor window resize events and rerender the layout on browser resize (defaults to true).                        </div>\r
967         </td>\r
968         <td class="msource">TabPanel</td>\r
969     </tr>\r
970         <tr class="config-row inherited expandable">\r
971         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
972         <td class="sig">\r
973         <a id="Ext.TabPanel-overCls"></a>\r
974             <b>overCls</b> : String            <div class="mdesc">\r
975                         <div class="short">An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...</div>\r
976             <div class="long">\r
977                 An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized "active" or "hover" styles to the component or any of its children using standard CSS rules.            </div>\r
978                         </div>\r
979         </td>\r
980         <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>\r
981     </tr>\r
982         <tr class="config-row inherited alt">\r
983         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
984         <td class="sig">\r
985         <a id="Ext.TabPanel-pageX"></a>\r
986             <b>pageX</b> : Number            <div class="mdesc">\r
987                             The page level x coordinate for this component if contained within a positioning container.                        </div>\r
988         </td>\r
989         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>\r
990     </tr>\r
991         <tr class="config-row inherited">\r
992         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
993         <td class="sig">\r
994         <a id="Ext.TabPanel-pageY"></a>\r
995             <b>pageY</b> : Number            <div class="mdesc">\r
996                             The page level y coordinate for this component if contained within a positioning container.                        </div>\r
997         </td>\r
998         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>\r
999     </tr>\r
1000         <tr class="config-row alt">\r
1001         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1002         <td class="sig">\r
1003         <a id="Ext.TabPanel-plain"></a>\r
1004             <b>plain</b> : Boolean            <div class="mdesc">\r
1005                             True to render the tab strip without a background container image (defaults to false).                        </div>\r
1006         </td>\r
1007         <td class="msource">TabPanel</td>\r
1008     </tr>\r
1009         <tr class="config-row inherited expandable">\r
1010         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1011         <td class="sig">\r
1012         <a id="Ext.TabPanel-plugins"></a>\r
1013             <b>plugins</b> : Object/Array            <div class="mdesc">\r
1014                         <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>\r
1015             <div class="long">\r
1016                 An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.            </div>\r
1017                         </div>\r
1018         </td>\r
1019         <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>\r
1020     </tr>\r
1021         <tr class="config-row inherited alt expandable">\r
1022         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1023         <td class="sig">\r
1024         <a id="Ext.TabPanel-renderTo"></a>\r
1025             <b>renderTo</b> : Mixed            <div class="mdesc">\r
1026                         <div class="short">The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using...</div>\r
1027             <div class="long">\r
1028                 The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using this config, a call to render() is not required.            </div>\r
1029                         </div>\r
1030         </td>\r
1031         <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>\r
1032     </tr>\r
1033         <tr class="config-row expandable">\r
1034         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1035         <td class="sig">\r
1036         <a id="Ext.TabPanel-resizeTabs"></a>\r
1037             <b>resizeTabs</b> : Boolean            <div class="mdesc">\r
1038                         <div class="short">True to automatically resize each tab so that the tabs will completely fill the tab strip (defaults to false). Settin...</div>\r
1039             <div class="long">\r
1040                 True to automatically resize each tab so that the tabs will completely fill the tab strip (defaults to false). Setting this to true may cause specific widths that might be set per tab to be overridden in order to fit them all into view (although <a ext:cls="Ext.TabPanel" ext:member="minTabWidth" href="output/Ext.TabPanel.html#minTabWidth">minTabWidth</a> will always be honored).            </div>\r
1041                         </div>\r
1042         </td>\r
1043         <td class="msource">TabPanel</td>\r
1044     </tr>\r
1045         <tr class="config-row alt expandable">\r
1046         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1047         <td class="sig">\r
1048         <a id="Ext.TabPanel-scrollDuration"></a>\r
1049             <b>scrollDuration</b> : Float            <div class="mdesc">\r
1050                         <div class="short">The number of milliseconds that each scroll animation should last (defaults to .35). Only applies when animScroll = t...</div>\r
1051             <div class="long">\r
1052                 The number of milliseconds that each scroll animation should last (defaults to .35). Only applies when <a ext:cls="Ext.TabPanel" ext:member="animScroll" href="output/Ext.TabPanel.html#animScroll">animScroll</a> = true.            </div>\r
1053                         </div>\r
1054         </td>\r
1055         <td class="msource">TabPanel</td>\r
1056     </tr>\r
1057         <tr class="config-row expandable">\r
1058         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1059         <td class="sig">\r
1060         <a id="Ext.TabPanel-scrollIncrement"></a>\r
1061             <b>scrollIncrement</b> : Number            <div class="mdesc">\r
1062                         <div class="short">The number of pixels to scroll each time a tab scroll button is pressed (defaults to 100, or if resizeTabs = true, th...</div>\r
1063             <div class="long">\r
1064                 The number of pixels to scroll each time a tab scroll button is pressed (defaults to 100, or if <a ext:cls="Ext.TabPanel" ext:member="resizeTabs" href="output/Ext.TabPanel.html#resizeTabs">resizeTabs</a> = true, the calculated tab width). Only applies when <a ext:cls="Ext.TabPanel" ext:member="enableTabScroll" href="output/Ext.TabPanel.html#enableTabScroll">enableTabScroll</a> = true.            </div>\r
1065                         </div>\r
1066         </td>\r
1067         <td class="msource">TabPanel</td>\r
1068     </tr>\r
1069         <tr class="config-row alt">\r
1070         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1071         <td class="sig">\r
1072         <a id="Ext.TabPanel-scrollRepeatInterval"></a>\r
1073             <b>scrollRepeatInterval</b> : Number            <div class="mdesc">\r
1074                             Number of milliseconds between each scroll while a tab scroll button is continuously pressed (defaults to 400).                        </div>\r
1075         </td>\r
1076         <td class="msource">TabPanel</td>\r
1077     </tr>\r
1078         <tr class="config-row inherited expandable">\r
1079         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1080         <td class="sig">\r
1081         <a id="Ext.TabPanel-shadow"></a>\r
1082             <b>shadow</b> : Boolean/String            <div class="mdesc">\r
1083                         <div class="short">True (or a valid Ext.Shadow Ext.Shadow.mode value) to display a shadow behind the panel, false to display no shadow (...</div>\r
1084             <div class="long">\r
1085                 True (or a valid Ext.Shadow <a ext:cls="Ext.Shadow" ext:member="mode" href="output/Ext.Shadow.html#mode">Ext.Shadow.mode</a> value) to display a shadow behind the panel, false to display no shadow (defaults to 'sides'). Note that this option only applies when floating = true.            </div>\r
1086                         </div>\r
1087         </td>\r
1088         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shadow" href="output/Ext.Panel.html#shadow">Panel</a></td>\r
1089     </tr>\r
1090         <tr class="config-row inherited alt expandable">\r
1091         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1092         <td class="sig">\r
1093         <a id="Ext.TabPanel-shadowOffset"></a>\r
1094             <b>shadowOffset</b> : Number            <div class="mdesc">\r
1095                         <div class="short">The number of pixels to offset the shadow if displayed (defaults to 4). Note that this option only applies when float...</div>\r
1096             <div class="long">\r
1097                 The number of pixels to offset the shadow if displayed (defaults to 4). Note that this option only applies when floating = true.            </div>\r
1098                         </div>\r
1099         </td>\r
1100         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shadowOffset" href="output/Ext.Panel.html#shadowOffset">Panel</a></td>\r
1101     </tr>\r
1102         <tr class="config-row inherited expandable">\r
1103         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1104         <td class="sig">\r
1105         <a id="Ext.TabPanel-shim"></a>\r
1106             <b>shim</b> : Boolean            <div class="mdesc">\r
1107                         <div class="short">False to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies wh...</div>\r
1108             <div class="long">\r
1109                 False to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies when floating = true.            </div>\r
1110                         </div>\r
1111         </td>\r
1112         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shim" href="output/Ext.Panel.html#shim">Panel</a></td>\r
1113     </tr>\r
1114         <tr class="config-row inherited alt expandable">\r
1115         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1116         <td class="sig">\r
1117         <a id="Ext.TabPanel-stateEvents"></a>\r
1118             <b>stateEvents</b> : Array            <div class="mdesc">\r
1119                         <div class="short">An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be...</div>\r
1120             <div class="long">\r
1121                 An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be any types of events supported by this component, including browser or custom events (e.g., ['click', 'customerchange']). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
1122                         </div>\r
1123         </td>\r
1124         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>\r
1125     </tr>\r
1126         <tr class="config-row inherited expandable">\r
1127         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1128         <td class="sig">\r
1129         <a id="Ext.TabPanel-stateId"></a>\r
1130             <b>stateId</b> : String            <div class="mdesc">\r
1131                         <div class="short">The unique id for this component to use for state management purposes (defaults to the component id if one was set, o...</div>\r
1132             <div class="long">\r
1133                 The unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
1134                         </div>\r
1135         </td>\r
1136         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>\r
1137     </tr>\r
1138         <tr class="config-row inherited alt expandable">\r
1139         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1140         <td class="sig">\r
1141         <a id="Ext.TabPanel-stateful"></a>\r
1142             <b>stateful</b> : Boolean            <div class="mdesc">\r
1143                         <div class="short">A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startu...</div>\r
1144             <div class="long">\r
1145                 <p>A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup. The component must have either a <a ext:cls="Ext.Component" ext:member="stateId" href="output/Ext.Component.html#stateId">stateId</a> or <a ext:cls="Ext.Component" ext:member="id" href="output/Ext.Component.html#id">id</a> assigned for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a component.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="Ext.Component" ext:member="staterestore" href="output/Ext.Component.html#staterestore">staterestore</a>, <a ext:cls="Ext.Component" ext:member="beforestatesave" href="output/Ext.Component.html#beforestatesave">beforestatesave</a> and <a ext:cls="Ext.Component" ext:member="statesave" href="output/Ext.Component.html#statesave">statesave</a> events</p>            </div>\r
1146                         </div>\r
1147         </td>\r
1148         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>\r
1149     </tr>\r
1150         <tr class="config-row inherited expandable">\r
1151         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1152         <td class="sig">\r
1153         <a id="Ext.TabPanel-style"></a>\r
1154             <b>style</b> : String            <div class="mdesc">\r
1155                         <div class="short">A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.Element.app...</div>\r
1156             <div class="long">\r
1157                 A custom style specification to be applied to this component's Element. Should be a valid argument to <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a>.            </div>\r
1158                         </div>\r
1159         </td>\r
1160         <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>\r
1161     </tr>\r
1162         <tr class="config-row alt expandable">\r
1163         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1164         <td class="sig">\r
1165         <a id="Ext.TabPanel-tabCls"></a>\r
1166             <b>tabCls</b> : String            <div class="mdesc">\r
1167                         <div class="short">This config option is used on child Components of ths TabPanel. A CSS class name applied to the tab strip item repres...</div>\r
1168             <div class="long">\r
1169                 <b>This config option is used on <u>child Components</u> of ths TabPanel.</b> A CSS class name applied to the tab strip item representing the child Component, allowing special styling to be applied.            </div>\r
1170                         </div>\r
1171         </td>\r
1172         <td class="msource">TabPanel</td>\r
1173     </tr>\r
1174         <tr class="config-row expandable">\r
1175         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1176         <td class="sig">\r
1177         <a id="Ext.TabPanel-tabMargin"></a>\r
1178             <b>tabMargin</b> : Number            <div class="mdesc">\r
1179                         <div class="short">The number of pixels of space to calculate into the sizing and scrolling of tabs. If you change the margin in CSS, yo...</div>\r
1180             <div class="long">\r
1181                 The number of pixels of space to calculate into the sizing and scrolling of tabs. If you change the margin in CSS, you will need to update this value so calculations are correct with either resizeTabs or scrolling tabs. (defaults to 2)            </div>\r
1182                         </div>\r
1183         </td>\r
1184         <td class="msource">TabPanel</td>\r
1185     </tr>\r
1186         <tr class="config-row alt expandable">\r
1187         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1188         <td class="sig">\r
1189         <a id="Ext.TabPanel-tabPosition"></a>\r
1190             <b>tabPosition</b> : String            <div class="mdesc">\r
1191                         <div class="short">The position where the tab strip should be rendered (defaults to 'top'). The only other supported value is 'bottom'. ...</div>\r
1192             <div class="long">\r
1193                 The position where the tab strip should be rendered (defaults to 'top'). The only other supported value is 'bottom'. Note that tab scrolling is only supported for position 'top'.            </div>\r
1194                         </div>\r
1195         </td>\r
1196         <td class="msource">TabPanel</td>\r
1197     </tr>\r
1198         <tr class="config-row inherited expandable">\r
1199         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1200         <td class="sig">\r
1201         <a id="Ext.TabPanel-tabTip"></a>\r
1202             <b>tabTip</b> : String            <div class="mdesc">\r
1203                         <div class="short">Adds a tooltip when mousing over the tab of a Ext.Panel which is an item of a Ext.TabPanel. Ext.QuickTips.init() must...</div>\r
1204             <div class="long">\r
1205                 Adds a tooltip when mousing over the tab of a Ext.Panel which is an item of a Ext.TabPanel. Ext.QuickTips.init() must be called in order for the tips to render.            </div>\r
1206                         </div>\r
1207         </td>\r
1208         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tabTip" href="output/Ext.Panel.html#tabTip">Panel</a></td>\r
1209     </tr>\r
1210         <tr class="config-row alt">\r
1211         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1212         <td class="sig">\r
1213         <a id="Ext.TabPanel-tabWidth"></a>\r
1214             <b>tabWidth</b> : Number            <div class="mdesc">\r
1215                             The initial width in pixels of each new tab (defaults to 120).                        </div>\r
1216         </td>\r
1217         <td class="msource">TabPanel</td>\r
1218     </tr>\r
1219         <tr class="config-row inherited expandable">\r
1220         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1221         <td class="sig">\r
1222         <a id="Ext.TabPanel-tbar"></a>\r
1223             <b>tbar</b> : Object/Array            <div class="mdesc">\r
1224                         <div class="short">The top toolbar of the panel. This can be either an Ext.Toolbar object or an array of buttons/button configs to be ad...</div>\r
1225             <div class="long">\r
1226                 The top toolbar of the panel. This can be either an <a ext:cls="Ext.Toolbar" href="output/Ext.Toolbar.html">Ext.Toolbar</a> object or an array of buttons/button configs to be added to the toolbar. Note that this is not available as a property after render. To access the top toolbar after render, use <a ext:cls="Ext.Panel" ext:member="getTopToolbar" href="output/Ext.Panel.html#getTopToolbar">getTopToolbar</a>.            </div>\r
1227                         </div>\r
1228         </td>\r
1229         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tbar" href="output/Ext.Panel.html#tbar">Panel</a></td>\r
1230     </tr>\r
1231         <tr class="config-row inherited alt expandable">\r
1232         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1233         <td class="sig">\r
1234         <a id="Ext.TabPanel-title"></a>\r
1235             <b>title</b> : String            <div class="mdesc">\r
1236                         <div class="short">The title text to display in the panel header (defaults to ''). When a title is specified the header element will aut...</div>\r
1237             <div class="long">\r
1238                 The title text to display in the panel header (defaults to ''). When a title is specified the header element will automatically be created and displayed unless <a ext:cls="Ext.Panel" ext:member="header" href="output/Ext.Panel.html#header">header</a> is explicitly set to false. If you don't want to specify a title at config time, but you may want one later, you must either specify a non-empty title (a blank space ' ' will do) or header:true so that the container element will get created.            </div>\r
1239                         </div>\r
1240         </td>\r
1241         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#title" href="output/Ext.Panel.html#title">Panel</a></td>\r
1242     </tr>\r
1243         <tr class="config-row">\r
1244         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1245         <td class="sig">\r
1246         <a id="Ext.TabPanel-wheelIncrement"></a>\r
1247             <b>wheelIncrement</b> : Number            <div class="mdesc">\r
1248                             For scrolling tabs, the number of pixels to increment on mouse wheel scrolling (defaults to 20).                        </div>\r
1249         </td>\r
1250         <td class="msource">TabPanel</td>\r
1251     </tr>\r
1252         <tr class="config-row inherited alt">\r
1253         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1254         <td class="sig">\r
1255         <a id="Ext.TabPanel-width"></a>\r
1256             <b>width</b> : Number            <div class="mdesc">\r
1257                             The width of this component in pixels (defaults to auto).                        </div>\r
1258         </td>\r
1259         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>\r
1260     </tr>\r
1261         <tr class="config-row inherited">\r
1262         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1263         <td class="sig">\r
1264         <a id="Ext.TabPanel-x"></a>\r
1265             <b>x</b> : Number            <div class="mdesc">\r
1266                             The local x (left) coordinate for this component if contained within a positioning container.                        </div>\r
1267         </td>\r
1268         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>\r
1269     </tr>\r
1270         <tr class="config-row inherited alt expandable">\r
1271         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1272         <td class="sig">\r
1273         <a id="Ext.TabPanel-xtype"></a>\r
1274             <b>xtype</b> : String            <div class="mdesc">\r
1275                         <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>\r
1276             <div class="long">\r
1277                 The registered xtype to create. This config option is not used when passing a config object into a constructor. This config option is used only when lazy instantiation is being used, and a child item of a Container is being specified not as a fully instantiated Component, but as a <i>Component config object</i>. The xtype will be looked up at render time up to determine what type of child Component to create.<br><br> The predefined xtypes are listed <a ext:cls="Ext.Component" href="output/Ext.Component.html">here</a>. <br><br> If you subclass Components to create your own Components, you may register them using <a ext:cls="Ext.ComponentMgr" ext:member="registerType" href="output/Ext.ComponentMgr.html#registerType">Ext.ComponentMgr.registerType</a> in order to be able to take advantage of lazy instantiation and rendering.            </div>\r
1278                         </div>\r
1279         </td>\r
1280         <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>\r
1281     </tr>\r
1282         <tr class="config-row inherited">\r
1283         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1284         <td class="sig">\r
1285         <a id="Ext.TabPanel-y"></a>\r
1286             <b>y</b> : Number            <div class="mdesc">\r
1287                             The local y (top) coordinate for this component if contained within a positioning container.                        </div>\r
1288         </td>\r
1289         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>\r
1290     </tr>\r
1291             </table>
1292                 <a id="Ext.TabPanel-props"></a>
1293         <h2>Public Properties</h2>
1294                 <table cellspacing="0" class="member-table">
1295             <tr>
1296                 <th class="sig-header" colspan="2">Property</th>
1297                 <th class="msource-header">Defined By</th>
1298             </tr>
1299                 <tr class="property-row inherited expandable">\r
1300         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1301         <td class="sig">\r
1302         <a id="Ext.TabPanel-body"></a>\r
1303             <b>body</b> : Ext.Element            <div class="mdesc">\r
1304                         <div class="short">
1305 The Panel's body Element which may be used to contain HTML content.
1306 The content may be specified in the html config,...</div>\r
1307             <div class="long">\r
1308                 
1309 The Panel's body <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a> which may be used to contain HTML content.
1310 The content may be specified in the <a ext:cls="Ext.Panel" ext:member="html" href="output/Ext.Panel.html#html">html</a> config, or it may be loaded using the
1311 <a ext:cls="autoLoad" href="output/autoLoad.html">autoLoad</a> config, or through the Panel's <a ext:cls="Ext.Panel" ext:member="getUpdater" href="output/Ext.Panel.html#getUpdater">Updater</a>. Read-only.
1312 <p>If this is used to load visible HTML elements in either way, then
1313 the Panel may not be used as a Layout for hosting nested Panels.</p>
1314 <p>If this Panel is intended to be used as the host of a Layout (See <a ext:cls="Ext.Panel" ext:member="layout" href="output/Ext.Panel.html#layout">layout</a>
1315 then the body Element must not be loaded or changed - it is under the control
1316 of the Panel's Layout.            </div>\r
1317                         </div>\r
1318         </td>\r
1319         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#body" href="output/Ext.Panel.html#body">Panel</a></td>\r
1320     </tr>\r
1321         <tr class="property-row inherited alt">\r
1322         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1323         <td class="sig">\r
1324         <a id="Ext.TabPanel-buttons"></a>\r
1325             <b>buttons</b> : Array            <div class="mdesc">\r
1326                             This Panel's Array of buttons as created from the <tt>buttons</tt>
1327 config property. Read only.                        </div>\r
1328         </td>\r
1329         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttons" href="output/Ext.Panel.html#buttons">Panel</a></td>\r
1330     </tr>\r
1331         <tr class="property-row inherited expandable">\r
1332         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1333         <td class="sig">\r
1334         <a id="Ext.TabPanel-dd"></a>\r
1335             <b>dd</b> : Ext.dd.DragSource.            <div class="mdesc">\r
1336                         <div class="short">If this Panel is configured draggable, this property will contain
1337 an instance of Ext.dd.DragSource which handles drag...</div>\r
1338             <div class="long">\r
1339                 <p>If this Panel is configured <a ext:cls="Ext.Panel" ext:member="draggable" href="output/Ext.Panel.html#draggable">draggable</a>, this property will contain
1340 an instance of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a> which handles dragging the Panel.</p>
1341 The developer must provide implementations of the abstract methods of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a>
1342 in order to supply behaviour for each stage of the drag/drop process. See <a ext:cls="Ext.Panel" ext:member="draggable" href="output/Ext.Panel.html#draggable">draggable</a>.            </div>\r
1343                         </div>\r
1344         </td>\r
1345         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#dd" href="output/Ext.Panel.html#dd">Panel</a></td>\r
1346     </tr>\r
1347         <tr class="property-row inherited alt">\r
1348         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1349         <td class="sig">\r
1350         <a id="Ext.TabPanel-disabled"></a>\r
1351             <b>disabled</b> : Boolean            <div class="mdesc">\r
1352                             True if this component is disabled. Read-only.                        </div>\r
1353         </td>\r
1354         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
1355     </tr>\r
1356         <tr class="property-row inherited">\r
1357         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1358         <td class="sig">\r
1359         <a id="Ext.TabPanel-footer"></a>\r
1360             <b>footer</b> : Ext.Element            <div class="mdesc">\r
1361                             
1362 The Panel's footer <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a>. Read-only.
1363 <p>This Element is used to house the Panel's <a ext:cls="Ext.Panel" ext:member="buttons" href="output/Ext.Panel.html#buttons">buttons</a>.</p>                        </div>\r
1364         </td>\r
1365         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#footer" href="output/Ext.Panel.html#footer">Panel</a></td>\r
1366     </tr>\r
1367         <tr class="property-row inherited alt">\r
1368         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1369         <td class="sig">\r
1370         <a id="Ext.TabPanel-hidden"></a>\r
1371             <b>hidden</b> : Boolean            <div class="mdesc">\r
1372                             
1373 True if this component is hidden. Read-only.                        </div>\r
1374         </td>\r
1375         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
1376     </tr>\r
1377         <tr class="property-row inherited">\r
1378         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1379         <td class="sig">\r
1380         <a id="Ext.TabPanel-initialConfig"></a>\r
1381             <b>initialConfig</b> : Object            <div class="mdesc">\r
1382                             This Component's initial configuration specification. Read-only.                        </div>\r
1383         </td>\r
1384         <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>\r
1385     </tr>\r
1386         <tr class="property-row inherited alt">\r
1387         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1388         <td class="sig">\r
1389         <a id="Ext.TabPanel-items"></a>\r
1390             <b>items</b> : MixedCollection            <div class="mdesc">\r
1391                             The collection of components in this container as a <a ext:cls="Ext.util.MixedCollection" href="output/Ext.util.MixedCollection.html">Ext.util.MixedCollection</a>                        </div>\r
1392         </td>\r
1393         <td class="msource"><a ext:cls="Ext.Container" ext:member="#items" href="output/Ext.Container.html#items">Container</a></td>\r
1394     </tr>\r
1395         <tr class="property-row inherited expandable">\r
1396         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1397         <td class="sig">\r
1398         <a id="Ext.TabPanel-ownerCt"></a>\r
1399             <b>ownerCt</b> : Ext.Container            <div class="mdesc">\r
1400                         <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
1401 the component is added to a...</div>\r
1402             <div class="long">\r
1403                 The component's owner <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (defaults to undefined, and is set automatically when
1404 the component is added to a container).  Read-only.            </div>\r
1405                         </div>\r
1406         </td>\r
1407         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>\r
1408     </tr>\r
1409         <tr class="property-row inherited alt">\r
1410         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1411         <td class="sig">\r
1412         <a id="Ext.TabPanel-rendered"></a>\r
1413             <b>rendered</b> : Boolean            <div class="mdesc">\r
1414                             True if this component has been rendered. Read-only.                        </div>\r
1415         </td>\r
1416         <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>\r
1417     </tr>\r
1418             </table>
1419                 <a id="Ext.TabPanel-methods"></a>
1420         <h2>Public Methods</h2>
1421                 <table cellspacing="0" class="member-table">
1422             <tr>
1423                 <th class="sig-header" colspan="2">Method</th>
1424                 <th class="msource-header">Defined By</th>
1425             </tr>
1426                 <tr class="method-row expandable">\r
1427         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1428         <td class="sig">\r
1429         <a id="Ext.TabPanel-TabPanel"></a>\r
1430             <b>TabPanel</b>(&nbsp;<code>Object config</code>&nbsp;)            <div class="mdesc">\r
1431                         <div class="short"></div>\r
1432             <div class="long">\r
1433                     <div class="mdetail-params">\r
1434         <strong>Parameters:</strong>\r
1435         <ul><li><code>config</code> : Object<div class="sub-desc">The configuration options</div></li>        </ul>\r
1436         <strong>Returns:</strong>\r
1437         <ul>\r
1438             <li><code></code></li>\r
1439         </ul>\r
1440     </div>\r
1441                 </div>\r
1442                         </div>\r
1443         </td>\r
1444         <td class="msource">TabPanel</td>\r
1445     </tr>\r
1446         <tr class="method-row alt expandable">\r
1447         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1448         <td class="sig">\r
1449         <a id="Ext.TabPanel-activate"></a>\r
1450             <b>activate</b>(&nbsp;<code>String/Panel tab</code>&nbsp;) : void            <div class="mdesc">\r
1451                         <div class="short">Sets the specified tab as the active tab. This method fires the beforetabchange event which
1452 can return false to cance...</div>\r
1453             <div class="long">\r
1454                 Sets the specified tab as the active tab. This method fires the <a ext:cls="Ext.TabPanel" ext:member="beforetabchange" href="output/Ext.TabPanel.html#beforetabchange">beforetabchange</a> event which
1455 can return false to cancel the tab change.    <div class="mdetail-params">\r
1456         <strong>Parameters:</strong>\r
1457         <ul><li><code>tab</code> : String/Panel<div class="sub-desc">The id or tab Panel to activate</div></li>        </ul>\r
1458         <strong>Returns:</strong>\r
1459         <ul>\r
1460             <li><code>void</code></li>\r
1461         </ul>\r
1462     </div>\r
1463                 </div>\r
1464                         </div>\r
1465         </td>\r
1466         <td class="msource">TabPanel</td>\r
1467     </tr>\r
1468         <tr class="method-row inherited expandable">\r
1469         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1470         <td class="sig">\r
1471         <a id="Ext.TabPanel-add"></a>\r
1472             <b>add</b>(&nbsp;<code>Ext.Component/Object component</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1473                         <div class="short">Adds a Component to this Container. Fires the beforeadd event before
1474 adding, then fires the add event after the compo...</div>\r
1475             <div class="long">\r
1476                 <p>Adds a <a ext:cls="Ext.Component" href="output/Ext.Component.html">Component</a> to this Container. Fires the <a ext:cls="Ext.Container" ext:member="beforeadd" href="output/Ext.Container.html#beforeadd">beforeadd</a> event before
1477 adding, then fires the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> event after the component has been added.</p>
1478 <p>You will never call the render method of a child Component when using a Container.
1479 Child Components are rendered by this Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when
1480 this Container is first rendered.</p>
1481 <p>Certain layout managers allow dynamic addition of child components. Those that do
1482 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
1483 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
1484 <p>If the Container is already rendered when add is called, you may need to call
1485 <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any unrendered child Components
1486 to be rendered. This is required so that you can add multiple child components if needed
1487 while only refreshing the layout once.</p>
1488 <p>When creating complex UIs, it is important to remember that sizing and positioning
1489 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager. If
1490 you expect child items to be sized in response to user interactions, you must
1491 specify a layout manager which creates and manages the type of layout you have in mind.</p>
1492 <p><b>Omitting the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic layout manager is
1493 used which does nothnig but render child components sequentially into the Container.
1494 No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
1495         <strong>Parameters:</strong>\r
1496         <ul><li><code>component</code> : Ext.Component/Object<div class="sub-desc">The Component to add.<br><br>
1497 Ext uses lazy rendering, and will only render the added Component should
1498 it become necessary, that is: when the Container is layed out either on first render
1499 or in response to a <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> call.<br><br>
1500 A Component config object may be passed instead of an instantiated Component object.
1501 The type of Component created from a config object is determined by the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">xtype</a>
1502 config property. If no xtype is configured, the Container's <a ext:cls="Ext.Container" ext:member="defaultType" href="output/Ext.Container.html#defaultType">defaultType</a>
1503 is used.<br><br>
1504 For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>\r
1505         <strong>Returns:</strong>\r
1506         <ul>\r
1507             <li><code>Ext.Component</code><div class="sub-desc">component The Component (or config object) that was added with the Container's default config values applied. <p>example:</p><pre><code> var myNewGrid = new Ext.grid.GridPanel({ store: myStore, colModel: myColModel }); myTabPanel.add(myNewGrid); myTabPanel.setActiveTab(myNewGrid); </code></pre></div></li>\r
1508         </ul>\r
1509     </div>\r
1510                 </div>\r
1511                         </div>\r
1512         </td>\r
1513         <td class="msource"><a ext:cls="Ext.Container" ext:member="#add" href="output/Ext.Container.html#add">Container</a></td>\r
1514     </tr>\r
1515         <tr class="method-row inherited alt expandable">\r
1516         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1517         <td class="sig">\r
1518         <a id="Ext.TabPanel-addButton"></a>\r
1519             <b>addButton</b>(&nbsp;<code>String/Object config</code>, <code>Function handler</code>, <code>Object scope</code>&nbsp;) : Ext.Button            <div class="mdesc">\r
1520                         <div class="short">Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1521 approach is to ...</div>\r
1522             <div class="long">\r
1523                 Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1524 approach is to add buttons via the <a ext:cls="Ext.Panel" ext:member="buttons" href="output/Ext.Panel.html#buttons">buttons</a> config.    <div class="mdetail-params">\r
1525         <strong>Parameters:</strong>\r
1526         <ul><li><code>config</code> : String/Object<div class="sub-desc">A valid <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a> config. A string will become the text for a default
1527 button config, an object will be treated as a button config object.</div></li><li><code>handler</code> : Function<div class="sub-desc">The function to be called on button <a ext:cls="Ext.Button" ext:member="click" href="output/Ext.Button.html#click">Ext.Button.click</a></div></li><li><code>scope</code> : Object<div class="sub-desc">The scope to use for the button handler function</div></li>        </ul>\r
1528         <strong>Returns:</strong>\r
1529         <ul>\r
1530             <li><code>Ext.Button</code><div class="sub-desc">The button that was added</div></li>\r
1531         </ul>\r
1532     </div>\r
1533                 </div>\r
1534                         </div>\r
1535         </td>\r
1536         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#addButton" href="output/Ext.Panel.html#addButton">Panel</a></td>\r
1537     </tr>\r
1538         <tr class="method-row inherited expandable">\r
1539         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1540         <td class="sig">\r
1541         <a id="Ext.TabPanel-addClass"></a>\r
1542             <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
1543                         <div class="short">Adds a CSS class to the component's underlying element.</div>\r
1544             <div class="long">\r
1545                 Adds a CSS class to the component's underlying element.    <div class="mdetail-params">\r
1546         <strong>Parameters:</strong>\r
1547         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>\r
1548         <strong>Returns:</strong>\r
1549         <ul>\r
1550             <li><code>void</code></li>\r
1551         </ul>\r
1552     </div>\r
1553                 </div>\r
1554                         </div>\r
1555         </td>\r
1556         <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>\r
1557     </tr>\r
1558         <tr class="method-row inherited alt expandable">\r
1559         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1560         <td class="sig">\r
1561         <a id="Ext.TabPanel-addEvents"></a>\r
1562             <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">\r
1563                         <div class="short">Used to define events on this Observable</div>\r
1564             <div class="long">\r
1565                 Used to define events on this Observable    <div class="mdetail-params">\r
1566         <strong>Parameters:</strong>\r
1567         <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>\r
1568         <strong>Returns:</strong>\r
1569         <ul>\r
1570             <li><code>void</code></li>\r
1571         </ul>\r
1572     </div>\r
1573                 </div>\r
1574                         </div>\r
1575         </td>\r
1576         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>\r
1577     </tr>\r
1578         <tr class="method-row inherited expandable">\r
1579         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1580         <td class="sig">\r
1581         <a id="Ext.TabPanel-addListener"></a>\r
1582             <b>addListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1583                         <div class="short">Appends an event handler to this component</div>\r
1584             <div class="long">\r
1585                 Appends an event handler to this component    <div class="mdetail-params">\r
1586         <strong>Parameters:</strong>\r
1587         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The method the event invokes</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope in which to execute the handler
1588 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
1589 properties. This may contain any of the following properties:<ul>
1590 <li><b>scope</b> : Object<p class="sub-desc">The scope in which to execute the handler function. The handler function's "this" context.</p></li>
1591 <li><b>delay</b> : Number<p class="sub-desc">The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>
1592 <li><b>single</b> : Boolean<p class="sub-desc">True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>
1593 <li><b>buffer</b> : Number<p class="sub-desc">Causes the handler to be scheduled to run in an <a ext:cls="Ext.util.DelayedTask" href="output/Ext.util.DelayedTask.html">Ext.util.DelayedTask</a> delayed
1594 by the specified number of milliseconds. If the event fires again within that time, the original
1595 handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
1596 </ul><br>
1597 <p>
1598 <b>Combining Options</b><br>
1599 Using the options argument, it is possible to combine different types of listeners:<br>
1600 <br>
1601 A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
1602 <pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
1603     single: true,
1604     delay: 100,
1605     forumId: 4
1606 });</code></pre>
1607 <p>
1608 <b>Attaching multiple handlers in 1 call</b><br>
1609 The method also allows for a single argument to be passed which is a config object containing properties
1610 which specify multiple handlers.
1611 <p>
1612 <pre><code>foo.on({
1613     <em>'click'</em> : {
1614         fn: <b>this</b>.onClick,
1615         scope: <b>this</b>,
1616         delay: 100
1617     },
1618     <em>'mouseover'</em> : {
1619         fn: <b>this</b>.onMouseOver,
1620         scope: <b>this</b>
1621     },
1622     <em>'mouseout'</em> : {
1623         fn: <b>this</b>.onMouseOut,
1624         scope: <b>this</b>
1625     }
1626 });</code></pre>
1627 <p>
1628 Or a shorthand syntax:<br>
1629 <pre><code>foo.on({
1630     <em>'click'</em> : <b>this</b>.onClick,
1631     <em>'mouseover'</em> : <b>this</b>.onMouseOver,
1632     <em>'mouseout'</em> : <b>this</b>.onMouseOut,
1633      scope: <b>this</b>
1634 });</code></pre></div></li>        </ul>\r
1635         <strong>Returns:</strong>\r
1636         <ul>\r
1637             <li><code>void</code></li>\r
1638         </ul>\r
1639     </div>\r
1640                 </div>\r
1641                         </div>\r
1642         </td>\r
1643         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>\r
1644     </tr>\r
1645         <tr class="method-row inherited alt expandable">\r
1646         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1647         <td class="sig">\r
1648         <a id="Ext.TabPanel-applyToMarkup"></a>\r
1649             <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">\r
1650                         <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>\r
1651             <div class="long">\r
1652                 Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">\r
1653         <strong>Parameters:</strong>\r
1654         <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>\r
1655         <strong>Returns:</strong>\r
1656         <ul>\r
1657             <li><code>void</code></li>\r
1658         </ul>\r
1659     </div>\r
1660                 </div>\r
1661                         </div>\r
1662         </td>\r
1663         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>\r
1664     </tr>\r
1665         <tr class="method-row expandable">\r
1666         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1667         <td class="sig">\r
1668         <a id="Ext.TabPanel-beginUpdate"></a>\r
1669             <b>beginUpdate</b>() : void            <div class="mdesc">\r
1670                         <div class="short">Suspends any internal calculations or scrolling while doing a bulk operation. See <a ext:cls="Ext.TabPanel" ext:member="endUpdate" href="output/Ext.TabPanel.html#endUpdate">endUpdate</a></div>\r
1671             <div class="long">\r
1672                 Suspends any internal calculations or scrolling while doing a bulk operation. See <a ext:cls="Ext.TabPanel" ext:member="endUpdate" href="output/Ext.TabPanel.html#endUpdate">endUpdate</a>    <div class="mdetail-params">\r
1673         <strong>Parameters:</strong>\r
1674         <ul><li>None.</li>        </ul>\r
1675         <strong>Returns:</strong>\r
1676         <ul>\r
1677             <li><code>void</code></li>\r
1678         </ul>\r
1679     </div>\r
1680                 </div>\r
1681                         </div>\r
1682         </td>\r
1683         <td class="msource">TabPanel</td>\r
1684     </tr>\r
1685         <tr class="method-row inherited alt expandable">\r
1686         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1687         <td class="sig">\r
1688         <a id="Ext.TabPanel-bubble"></a>\r
1689             <b>bubble</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1690                         <div class="short">Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of...</div>\r
1691             <div class="long">\r
1692                 Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of
1693 function call will be the scope provided or the current component. The arguments to the function
1694 will be the args provided or the current component. If the function returns false at any point,
1695 the bubble is stopped.    <div class="mdetail-params">\r
1696         <strong>Parameters:</strong>\r
1697         <ul><li><code>fn</code> : Function<div class="sub-desc">The function to call</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope of the function (defaults to current node)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (default to passing the current component)</div></li>        </ul>\r
1698         <strong>Returns:</strong>\r
1699         <ul>\r
1700             <li><code>void</code></li>\r
1701         </ul>\r
1702     </div>\r
1703                 </div>\r
1704                         </div>\r
1705         </td>\r
1706         <td class="msource"><a ext:cls="Ext.Container" ext:member="#bubble" href="output/Ext.Container.html#bubble">Container</a></td>\r
1707     </tr>\r
1708         <tr class="method-row inherited expandable">\r
1709         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1710         <td class="sig">\r
1711         <a id="Ext.TabPanel-cascade"></a>\r
1712             <b>cascade</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1713                         <div class="short">Cascades down the component/container heirarchy from this component (called first), calling the specified function wi...</div>\r
1714             <div class="long">\r
1715                 Cascades down the component/container heirarchy from this component (called first), calling the specified function with
1716 each component. The scope (<i>this</i>) of
1717 function call will be the scope provided or the current component. The arguments to the function
1718 will be the args provided or the current component. If the function returns false at any point,
1719 the cascade is stopped on that branch.    <div class="mdetail-params">\r
1720         <strong>Parameters:</strong>\r
1721         <ul><li><code>fn</code> : Function<div class="sub-desc">The function to call</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope of the function (defaults to current component)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (defaults to passing the current component)</div></li>        </ul>\r
1722         <strong>Returns:</strong>\r
1723         <ul>\r
1724             <li><code>void</code></li>\r
1725         </ul>\r
1726     </div>\r
1727                 </div>\r
1728                         </div>\r
1729         </td>\r
1730         <td class="msource"><a ext:cls="Ext.Container" ext:member="#cascade" href="output/Ext.Container.html#cascade">Container</a></td>\r
1731     </tr>\r
1732         <tr class="method-row inherited alt expandable">\r
1733         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1734         <td class="sig">\r
1735         <a id="Ext.TabPanel-cloneConfig"></a>\r
1736             <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1737                         <div class="short">Clone the current component using the original config values passed into this instance by default.</div>\r
1738             <div class="long">\r
1739                 Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">\r
1740         <strong>Parameters:</strong>\r
1741         <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
1742 An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>\r
1743         <strong>Returns:</strong>\r
1744         <ul>\r
1745             <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>\r
1746         </ul>\r
1747     </div>\r
1748                 </div>\r
1749                         </div>\r
1750         </td>\r
1751         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>\r
1752     </tr>\r
1753         <tr class="method-row inherited expandable">\r
1754         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1755         <td class="sig">\r
1756         <a id="Ext.TabPanel-collapse"></a>\r
1757             <b>collapse</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
1758                         <div class="short">Collapses the panel body so that it becomes hidden.  Fires the beforecollapse event which will
1759 cancel the collapse ac...</div>\r
1760             <div class="long">\r
1761                 Collapses the panel body so that it becomes hidden.  Fires the <a ext:cls="Ext.Panel" ext:member="beforecollapse" href="output/Ext.Panel.html#beforecollapse">beforecollapse</a> event which will
1762 cancel the collapse action if it returns false.    <div class="mdetail-params">\r
1763         <strong>Parameters:</strong>\r
1764         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
1765 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
1766         <strong>Returns:</strong>\r
1767         <ul>\r
1768             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
1769         </ul>\r
1770     </div>\r
1771                 </div>\r
1772                         </div>\r
1773         </td>\r
1774         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapse" href="output/Ext.Panel.html#collapse">Panel</a></td>\r
1775     </tr>\r
1776         <tr class="method-row inherited alt expandable">\r
1777         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1778         <td class="sig">\r
1779         <a id="Ext.TabPanel-destroy"></a>\r
1780             <b>destroy</b>() : void            <div class="mdesc">\r
1781                         <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
1782 removing the c...</div>\r
1783             <div class="long">\r
1784                 Destroys this component by purging any event listeners, removing the component's element from the DOM,
1785 removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
1786 <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
1787 should usually not need to be called directly.    <div class="mdetail-params">\r
1788         <strong>Parameters:</strong>\r
1789         <ul><li>None.</li>        </ul>\r
1790         <strong>Returns:</strong>\r
1791         <ul>\r
1792             <li><code>void</code></li>\r
1793         </ul>\r
1794     </div>\r
1795                 </div>\r
1796                         </div>\r
1797         </td>\r
1798         <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>\r
1799     </tr>\r
1800         <tr class="method-row inherited expandable">\r
1801         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1802         <td class="sig">\r
1803         <a id="Ext.TabPanel-disable"></a>\r
1804             <b>disable</b>() : Ext.Component            <div class="mdesc">\r
1805                         <div class="short">Disable this component.</div>\r
1806             <div class="long">\r
1807                 Disable this component.    <div class="mdetail-params">\r
1808         <strong>Parameters:</strong>\r
1809         <ul><li>None.</li>        </ul>\r
1810         <strong>Returns:</strong>\r
1811         <ul>\r
1812             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1813         </ul>\r
1814     </div>\r
1815                 </div>\r
1816                         </div>\r
1817         </td>\r
1818         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>\r
1819     </tr>\r
1820         <tr class="method-row inherited alt expandable">\r
1821         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1822         <td class="sig">\r
1823         <a id="Ext.TabPanel-doLayout"></a>\r
1824             <b>doLayout</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1825                         <div class="short">Force this container's layout to be recalculated. A call to this function is required after adding a new component
1826 to...</div>\r
1827             <div class="long">\r
1828                 Force this container's layout to be recalculated. A call to this function is required after adding a new component
1829 to an already rendered container, or possibly after changing sizing/position properties of child components.    <div class="mdetail-params">\r
1830         <strong>Parameters:</strong>\r
1831         <ul><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) True to only calc the layout of this component, and let child components auto
1832 calc layouts as required (defaults to false, which calls doLayout recursively for each subcontainer)</div></li>        </ul>\r
1833         <strong>Returns:</strong>\r
1834         <ul>\r
1835             <li><code>void</code></li>\r
1836         </ul>\r
1837     </div>\r
1838                 </div>\r
1839                         </div>\r
1840         </td>\r
1841         <td class="msource"><a ext:cls="Ext.Container" ext:member="#doLayout" href="output/Ext.Container.html#doLayout">Container</a></td>\r
1842     </tr>\r
1843         <tr class="method-row inherited expandable">\r
1844         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1845         <td class="sig">\r
1846         <a id="Ext.TabPanel-enable"></a>\r
1847             <b>enable</b>() : Ext.Component            <div class="mdesc">\r
1848                         <div class="short">Enable this component.</div>\r
1849             <div class="long">\r
1850                 Enable this component.    <div class="mdetail-params">\r
1851         <strong>Parameters:</strong>\r
1852         <ul><li>None.</li>        </ul>\r
1853         <strong>Returns:</strong>\r
1854         <ul>\r
1855             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1856         </ul>\r
1857     </div>\r
1858                 </div>\r
1859                         </div>\r
1860         </td>\r
1861         <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>\r
1862     </tr>\r
1863         <tr class="method-row alt expandable">\r
1864         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1865         <td class="sig">\r
1866         <a id="Ext.TabPanel-endUpdate"></a>\r
1867             <b>endUpdate</b>() : void            <div class="mdesc">\r
1868                         <div class="short">Resumes calculations and scrolling at the end of a bulk operation. See <a ext:cls="Ext.TabPanel" ext:member="beginUpdate" href="output/Ext.TabPanel.html#beginUpdate">beginUpdate</a></div>\r
1869             <div class="long">\r
1870                 Resumes calculations and scrolling at the end of a bulk operation. See <a ext:cls="Ext.TabPanel" ext:member="beginUpdate" href="output/Ext.TabPanel.html#beginUpdate">beginUpdate</a>    <div class="mdetail-params">\r
1871         <strong>Parameters:</strong>\r
1872         <ul><li>None.</li>        </ul>\r
1873         <strong>Returns:</strong>\r
1874         <ul>\r
1875             <li><code>void</code></li>\r
1876         </ul>\r
1877     </div>\r
1878                 </div>\r
1879                         </div>\r
1880         </td>\r
1881         <td class="msource">TabPanel</td>\r
1882     </tr>\r
1883         <tr class="method-row inherited expandable">\r
1884         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1885         <td class="sig">\r
1886         <a id="Ext.TabPanel-expand"></a>\r
1887             <b>expand</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
1888                         <div class="short">Expands the panel body so that it becomes visible.  Fires the beforeexpand event which will
1889 cancel the expand action ...</div>\r
1890             <div class="long">\r
1891                 Expands the panel body so that it becomes visible.  Fires the <a ext:cls="Ext.Panel" ext:member="beforeexpand" href="output/Ext.Panel.html#beforeexpand">beforeexpand</a> event which will
1892 cancel the expand action if it returns false.    <div class="mdetail-params">\r
1893         <strong>Parameters:</strong>\r
1894         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
1895 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
1896         <strong>Returns:</strong>\r
1897         <ul>\r
1898             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
1899         </ul>\r
1900     </div>\r
1901                 </div>\r
1902                         </div>\r
1903         </td>\r
1904         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#expand" href="output/Ext.Panel.html#expand">Panel</a></td>\r
1905     </tr>\r
1906         <tr class="method-row inherited alt expandable">\r
1907         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1908         <td class="sig">\r
1909         <a id="Ext.TabPanel-find"></a>\r
1910             <b>find</b>(&nbsp;<code>String prop</code>, <code>String value</code>&nbsp;) : Array            <div class="mdesc">\r
1911                         <div class="short">Find a component under this container at any level by property</div>\r
1912             <div class="long">\r
1913                 Find a component under this container at any level by property    <div class="mdetail-params">\r
1914         <strong>Parameters:</strong>\r
1915         <ul><li><code>prop</code> : String<div class="sub-desc"></div></li><li><code>value</code> : String<div class="sub-desc"></div></li>        </ul>\r
1916         <strong>Returns:</strong>\r
1917         <ul>\r
1918             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1919         </ul>\r
1920     </div>\r
1921                 </div>\r
1922                         </div>\r
1923         </td>\r
1924         <td class="msource"><a ext:cls="Ext.Container" ext:member="#find" href="output/Ext.Container.html#find">Container</a></td>\r
1925     </tr>\r
1926         <tr class="method-row inherited expandable">\r
1927         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1928         <td class="sig">\r
1929         <a id="Ext.TabPanel-findBy"></a>\r
1930             <b>findBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1931                         <div class="short">Find a component under this container at any level by a custom function. If the passed function returns
1932 true, the com...</div>\r
1933             <div class="long">\r
1934                 Find a component under this container at any level by a custom function. If the passed function returns
1935 true, the component will be included in the results. The passed function is called with the arguments (component, this container).    <div class="mdetail-params">\r
1936         <strong>Parameters:</strong>\r
1937         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1938         <strong>Returns:</strong>\r
1939         <ul>\r
1940             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1941         </ul>\r
1942     </div>\r
1943                 </div>\r
1944                         </div>\r
1945         </td>\r
1946         <td class="msource"><a ext:cls="Ext.Container" ext:member="#findBy" href="output/Ext.Container.html#findBy">Container</a></td>\r
1947     </tr>\r
1948         <tr class="method-row inherited alt expandable">\r
1949         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1950         <td class="sig">\r
1951         <a id="Ext.TabPanel-findById"></a>\r
1952             <b>findById</b>(&nbsp;<code>String id</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1953                         <div class="short">Find a component under this container at any level by id</div>\r
1954             <div class="long">\r
1955                 Find a component under this container at any level by id    <div class="mdetail-params">\r
1956         <strong>Parameters:</strong>\r
1957         <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>\r
1958         <strong>Returns:</strong>\r
1959         <ul>\r
1960             <li><code>Ext.Component</code></li>\r
1961         </ul>\r
1962     </div>\r
1963                 </div>\r
1964                         </div>\r
1965         </td>\r
1966         <td class="msource"><a ext:cls="Ext.Container" ext:member="#findById" href="output/Ext.Container.html#findById">Container</a></td>\r
1967     </tr>\r
1968         <tr class="method-row inherited expandable">\r
1969         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1970         <td class="sig">\r
1971         <a id="Ext.TabPanel-findByType"></a>\r
1972             <b>findByType</b>(&nbsp;<code>String/Class xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1973                         <div class="short">Find a component under this container at any level by xtype or class</div>\r
1974             <div class="long">\r
1975                 Find a component under this container at any level by xtype or class    <div class="mdetail-params">\r
1976         <strong>Parameters:</strong>\r
1977         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) False to check whether this Component is descended from the xtype (this is
1978 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
1979         <strong>Returns:</strong>\r
1980         <ul>\r
1981             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1982         </ul>\r
1983     </div>\r
1984                 </div>\r
1985                         </div>\r
1986         </td>\r
1987         <td class="msource"><a ext:cls="Ext.Container" ext:member="#findByType" href="output/Ext.Container.html#findByType">Container</a></td>\r
1988     </tr>\r
1989         <tr class="method-row inherited alt expandable">\r
1990         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1991         <td class="sig">\r
1992         <a id="Ext.TabPanel-findParentBy"></a>\r
1993             <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Ext.Container            <div class="mdesc">\r
1994                         <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
1995 true, the con...</div>\r
1996             <div class="long">\r
1997                 Find a container above this component at any level by a custom function. If the passed function returns
1998 true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">\r
1999         <strong>Parameters:</strong>\r
2000         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
2001         <strong>Returns:</strong>\r
2002         <ul>\r
2003             <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>\r
2004         </ul>\r
2005     </div>\r
2006                 </div>\r
2007                         </div>\r
2008         </td>\r
2009         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>\r
2010     </tr>\r
2011         <tr class="method-row inherited expandable">\r
2012         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2013         <td class="sig">\r
2014         <a id="Ext.TabPanel-findParentByType"></a>\r
2015             <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">\r
2016                         <div class="short">Find a container above this component at any level by xtype or class</div>\r
2017             <div class="long">\r
2018                 Find a container above this component at any level by xtype or class    <div class="mdetail-params">\r
2019         <strong>Parameters:</strong>\r
2020         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li>        </ul>\r
2021         <strong>Returns:</strong>\r
2022         <ul>\r
2023             <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>\r
2024         </ul>\r
2025     </div>\r
2026                 </div>\r
2027                         </div>\r
2028         </td>\r
2029         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>\r
2030     </tr>\r
2031         <tr class="method-row inherited alt expandable">\r
2032         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2033         <td class="sig">\r
2034         <a id="Ext.TabPanel-fireEvent"></a>\r
2035             <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">\r
2036                         <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>\r
2037             <div class="long">\r
2038                 Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">\r
2039         <strong>Parameters:</strong>\r
2040         <ul><li><code>eventName</code> : String<div class="sub-desc"></div></li><li><code>args</code> : Object...<div class="sub-desc">Variable number of parameters are passed to handlers</div></li>        </ul>\r
2041         <strong>Returns:</strong>\r
2042         <ul>\r
2043             <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>\r
2044         </ul>\r
2045     </div>\r
2046                 </div>\r
2047                         </div>\r
2048         </td>\r
2049         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>\r
2050     </tr>\r
2051         <tr class="method-row inherited expandable">\r
2052         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2053         <td class="sig">\r
2054         <a id="Ext.TabPanel-focus"></a>\r
2055             <b>focus</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean selectText</code>]</span>, <span class="optional" title="Optional">[<code>Boolean/Number delay</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
2056                         <div class="short">Try to focus this component.</div>\r
2057             <div class="long">\r
2058                 Try to focus this component.    <div class="mdetail-params">\r
2059         <strong>Parameters:</strong>\r
2060         <ul><li><code>selectText</code> : Boolean<div class="sub-desc">(optional) If applicable, true to also select the text in this component</div></li><li><code>delay</code> : Boolean/Number<div class="sub-desc">(optional) Delay the focus this number of milliseconds (true for 10 milliseconds)</div></li>        </ul>\r
2061         <strong>Returns:</strong>\r
2062         <ul>\r
2063             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2064         </ul>\r
2065     </div>\r
2066                 </div>\r
2067                         </div>\r
2068         </td>\r
2069         <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>\r
2070     </tr>\r
2071         <tr class="method-row alt expandable">\r
2072         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2073         <td class="sig">\r
2074         <a id="Ext.TabPanel-getActiveTab"></a>\r
2075             <b>getActiveTab</b>() : Panel            <div class="mdesc">\r
2076                         <div class="short">Gets the currently active tab.</div>\r
2077             <div class="long">\r
2078                 Gets the currently active tab.    <div class="mdetail-params">\r
2079         <strong>Parameters:</strong>\r
2080         <ul><li>None.</li>        </ul>\r
2081         <strong>Returns:</strong>\r
2082         <ul>\r
2083             <li><code>Panel</code><div class="sub-desc">The active tab</div></li>\r
2084         </ul>\r
2085     </div>\r
2086                 </div>\r
2087                         </div>\r
2088         </td>\r
2089         <td class="msource">TabPanel</td>\r
2090     </tr>\r
2091         <tr class="method-row inherited expandable">\r
2092         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2093         <td class="sig">\r
2094         <a id="Ext.TabPanel-getBottomToolbar"></a>\r
2095             <b>getBottomToolbar</b>() : Ext.Toolbar            <div class="mdesc">\r
2096                         <div class="short">Returns the toolbar from the bottom (bbar) section of the panel.</div>\r
2097             <div class="long">\r
2098                 Returns the toolbar from the bottom (bbar) section of the panel.    <div class="mdetail-params">\r
2099         <strong>Parameters:</strong>\r
2100         <ul><li>None.</li>        </ul>\r
2101         <strong>Returns:</strong>\r
2102         <ul>\r
2103             <li><code>Ext.Toolbar</code><div class="sub-desc">The toolbar</div></li>\r
2104         </ul>\r
2105     </div>\r
2106                 </div>\r
2107                         </div>\r
2108         </td>\r
2109         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getBottomToolbar" href="output/Ext.Panel.html#getBottomToolbar">Panel</a></td>\r
2110     </tr>\r
2111         <tr class="method-row inherited alt expandable">\r
2112         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2113         <td class="sig">\r
2114         <a id="Ext.TabPanel-getBox"></a>\r
2115             <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">\r
2116                         <div class="short">Gets the current box measurements of the component's underlying element.</div>\r
2117             <div class="long">\r
2118                 Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
2119         <strong>Parameters:</strong>\r
2120         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
2121         <strong>Returns:</strong>\r
2122         <ul>\r
2123             <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>\r
2124         </ul>\r
2125     </div>\r
2126                 </div>\r
2127                         </div>\r
2128         </td>\r
2129         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>\r
2130     </tr>\r
2131         <tr class="method-row inherited expandable">\r
2132         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2133         <td class="sig">\r
2134         <a id="Ext.TabPanel-getComponent"></a>\r
2135             <b>getComponent</b>(&nbsp;<code>String/Number id</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
2136                         <div class="short">Gets a direct child Component by id, or by index.</div>\r
2137             <div class="long">\r
2138                 Gets a direct child Component by id, or by index.    <div class="mdetail-params">\r
2139         <strong>Parameters:</strong>\r
2140         <ul><li><code>id</code> : String/Number<div class="sub-desc">or index of child Component to return.</div></li>        </ul>\r
2141         <strong>Returns:</strong>\r
2142         <ul>\r
2143             <li><code>Ext.Component</code></li>\r
2144         </ul>\r
2145     </div>\r
2146                 </div>\r
2147                         </div>\r
2148         </td>\r
2149         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getComponent" href="output/Ext.Container.html#getComponent">Container</a></td>\r
2150     </tr>\r
2151         <tr class="method-row inherited alt expandable">\r
2152         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2153         <td class="sig">\r
2154         <a id="Ext.TabPanel-getEl"></a>\r
2155             <b>getEl</b>() : Ext.Element            <div class="mdesc">\r
2156                         <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>\r
2157             <div class="long">\r
2158                 Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">\r
2159         <strong>Parameters:</strong>\r
2160         <ul><li>None.</li>        </ul>\r
2161         <strong>Returns:</strong>\r
2162         <ul>\r
2163             <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>\r
2164         </ul>\r
2165     </div>\r
2166                 </div>\r
2167                         </div>\r
2168         </td>\r
2169         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>\r
2170     </tr>\r
2171         <tr class="method-row inherited expandable">\r
2172         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2173         <td class="sig">\r
2174         <a id="Ext.TabPanel-getFrameHeight"></a>\r
2175             <b>getFrameHeight</b>() : Number            <div class="mdesc">\r
2176                         <div class="short">Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
2177 header and ...</div>\r
2178             <div class="long">\r
2179                 Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
2180 header and footer elements, but not including the body height).  To retrieve the body height see <a ext:cls="Ext.Panel" ext:member="getInnerHeight" href="output/Ext.Panel.html#getInnerHeight">getInnerHeight</a>.    <div class="mdetail-params">\r
2181         <strong>Parameters:</strong>\r
2182         <ul><li>None.</li>        </ul>\r
2183         <strong>Returns:</strong>\r
2184         <ul>\r
2185             <li><code>Number</code><div class="sub-desc">The frame height</div></li>\r
2186         </ul>\r
2187     </div>\r
2188                 </div>\r
2189                         </div>\r
2190         </td>\r
2191         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getFrameHeight" href="output/Ext.Panel.html#getFrameHeight">Panel</a></td>\r
2192     </tr>\r
2193         <tr class="method-row inherited alt expandable">\r
2194         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2195         <td class="sig">\r
2196         <a id="Ext.TabPanel-getFrameWidth"></a>\r
2197             <b>getFrameWidth</b>() : Number            <div class="mdesc">\r
2198                         <div class="short">Returns the width in pixels of the framing elements of this panel (not including the body width).  To
2199 retrieve the bo...</div>\r
2200             <div class="long">\r
2201                 Returns the width in pixels of the framing elements of this panel (not including the body width).  To
2202 retrieve the body width see <a ext:cls="Ext.Panel" ext:member="getInnerWidth" href="output/Ext.Panel.html#getInnerWidth">getInnerWidth</a>.    <div class="mdetail-params">\r
2203         <strong>Parameters:</strong>\r
2204         <ul><li>None.</li>        </ul>\r
2205         <strong>Returns:</strong>\r
2206         <ul>\r
2207             <li><code>Number</code><div class="sub-desc">The frame width</div></li>\r
2208         </ul>\r
2209     </div>\r
2210                 </div>\r
2211                         </div>\r
2212         </td>\r
2213         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getFrameWidth" href="output/Ext.Panel.html#getFrameWidth">Panel</a></td>\r
2214     </tr>\r
2215         <tr class="method-row inherited expandable">\r
2216         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2217         <td class="sig">\r
2218         <a id="Ext.TabPanel-getId"></a>\r
2219             <b>getId</b>() : String            <div class="mdesc">\r
2220                         <div class="short">Returns the id of this component.</div>\r
2221             <div class="long">\r
2222                 Returns the id of this component.    <div class="mdetail-params">\r
2223         <strong>Parameters:</strong>\r
2224         <ul><li>None.</li>        </ul>\r
2225         <strong>Returns:</strong>\r
2226         <ul>\r
2227             <li><code>String</code></li>\r
2228         </ul>\r
2229     </div>\r
2230                 </div>\r
2231                         </div>\r
2232         </td>\r
2233         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>\r
2234     </tr>\r
2235         <tr class="method-row inherited alt expandable">\r
2236         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2237         <td class="sig">\r
2238         <a id="Ext.TabPanel-getInnerHeight"></a>\r
2239             <b>getInnerHeight</b>() : Number            <div class="mdesc">\r
2240                         <div class="short">Returns the height in pixels of the body element (not including the height of any framing elements).
2241 For the frame he...</div>\r
2242             <div class="long">\r
2243                 Returns the height in pixels of the body element (not including the height of any framing elements).
2244 For the frame height see <a ext:cls="Ext.Panel" ext:member="getFrameHeight" href="output/Ext.Panel.html#getFrameHeight">getFrameHeight</a>.    <div class="mdetail-params">\r
2245         <strong>Parameters:</strong>\r
2246         <ul><li>None.</li>        </ul>\r
2247         <strong>Returns:</strong>\r
2248         <ul>\r
2249             <li><code>Number</code><div class="sub-desc">The body height</div></li>\r
2250         </ul>\r
2251     </div>\r
2252                 </div>\r
2253                         </div>\r
2254         </td>\r
2255         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getInnerHeight" href="output/Ext.Panel.html#getInnerHeight">Panel</a></td>\r
2256     </tr>\r
2257         <tr class="method-row inherited expandable">\r
2258         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2259         <td class="sig">\r
2260         <a id="Ext.TabPanel-getInnerWidth"></a>\r
2261             <b>getInnerWidth</b>() : Number            <div class="mdesc">\r
2262                         <div class="short">Returns the width in pixels of the body element (not including the width of any framing elements).
2263 For the frame widt...</div>\r
2264             <div class="long">\r
2265                 Returns the width in pixels of the body element (not including the width of any framing elements).
2266 For the frame width see <a ext:cls="Ext.Panel" ext:member="getFrameWidth" href="output/Ext.Panel.html#getFrameWidth">getFrameWidth</a>.    <div class="mdetail-params">\r
2267         <strong>Parameters:</strong>\r
2268         <ul><li>None.</li>        </ul>\r
2269         <strong>Returns:</strong>\r
2270         <ul>\r
2271             <li><code>Number</code><div class="sub-desc">The body width</div></li>\r
2272         </ul>\r
2273     </div>\r
2274                 </div>\r
2275                         </div>\r
2276         </td>\r
2277         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getInnerWidth" href="output/Ext.Panel.html#getInnerWidth">Panel</a></td>\r
2278     </tr>\r
2279         <tr class="method-row alt expandable">\r
2280         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2281         <td class="sig">\r
2282         <a id="Ext.TabPanel-getItem"></a>\r
2283             <b>getItem</b>(&nbsp;<code>String id</code>&nbsp;) : Panel            <div class="mdesc">\r
2284                         <div class="short">Gets the specified tab by id.</div>\r
2285             <div class="long">\r
2286                 Gets the specified tab by id.    <div class="mdetail-params">\r
2287         <strong>Parameters:</strong>\r
2288         <ul><li><code>id</code> : String<div class="sub-desc">The tab id</div></li>        </ul>\r
2289         <strong>Returns:</strong>\r
2290         <ul>\r
2291             <li><code>Panel</code><div class="sub-desc">The tab</div></li>\r
2292         </ul>\r
2293     </div>\r
2294                 </div>\r
2295                         </div>\r
2296         </td>\r
2297         <td class="msource">TabPanel</td>\r
2298     </tr>\r
2299         <tr class="method-row inherited expandable">\r
2300         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2301         <td class="sig">\r
2302         <a id="Ext.TabPanel-getItemId"></a>\r
2303             <b>getItemId</b>() : String            <div class="mdesc">\r
2304                         <div class="short">Returns the item id of this component.</div>\r
2305             <div class="long">\r
2306                 Returns the item id of this component.    <div class="mdetail-params">\r
2307         <strong>Parameters:</strong>\r
2308         <ul><li>None.</li>        </ul>\r
2309         <strong>Returns:</strong>\r
2310         <ul>\r
2311             <li><code>String</code></li>\r
2312         </ul>\r
2313     </div>\r
2314                 </div>\r
2315                         </div>\r
2316         </td>\r
2317         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>\r
2318     </tr>\r
2319         <tr class="method-row inherited alt expandable">\r
2320         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2321         <td class="sig">\r
2322         <a id="Ext.TabPanel-getLayout"></a>\r
2323             <b>getLayout</b>() : ContainerLayout            <div class="mdesc">\r
2324                         <div class="short">Returns the layout currently in use by the container.  If the container does not currently have a layout
2325 set, a defau...</div>\r
2326             <div class="long">\r
2327                 Returns the layout currently in use by the container.  If the container does not currently have a layout
2328 set, a default <a ext:cls="Ext.layout.ContainerLayout" href="output/Ext.layout.ContainerLayout.html">Ext.layout.ContainerLayout</a> will be created and set as the container's layout.    <div class="mdetail-params">\r
2329         <strong>Parameters:</strong>\r
2330         <ul><li>None.</li>        </ul>\r
2331         <strong>Returns:</strong>\r
2332         <ul>\r
2333             <li><code>ContainerLayout</code><div class="sub-desc">layout The container's layout</div></li>\r
2334         </ul>\r
2335     </div>\r
2336                 </div>\r
2337                         </div>\r
2338         </td>\r
2339         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getLayout" href="output/Ext.Container.html#getLayout">Container</a></td>\r
2340     </tr>\r
2341         <tr class="method-row inherited expandable">\r
2342         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2343         <td class="sig">\r
2344         <a id="Ext.TabPanel-getLayoutTarget"></a>\r
2345             <b>getLayoutTarget</b>() : Ext.Element            <div class="mdesc">\r
2346                         <div class="short">Returns the Element to be used to contain the child Components of this Container.
2347 An implementation is provided which...</div>\r
2348             <div class="long">\r
2349                 <p>Returns the Element to be used to contain the child Components of this Container.</p>
2350 <p>An implementation is provided which returns the Container's <a ext:cls="Ext.Container" ext:member="getEl" href="output/Ext.Container.html#getEl">Element</a>, but
2351 if there is a more complex structure to a Container, this may be overridden to return
2352 the element into which the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> renders child Components.</p>    <div class="mdetail-params">\r
2353         <strong>Parameters:</strong>\r
2354         <ul><li>None.</li>        </ul>\r
2355         <strong>Returns:</strong>\r
2356         <ul>\r
2357             <li><code>Ext.Element</code><div class="sub-desc">The Element to render child Components into.</div></li>\r
2358         </ul>\r
2359     </div>\r
2360                 </div>\r
2361                         </div>\r
2362         </td>\r
2363         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getLayoutTarget" href="output/Ext.Container.html#getLayoutTarget">Container</a></td>\r
2364     </tr>\r
2365         <tr class="method-row inherited alt expandable">\r
2366         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2367         <td class="sig">\r
2368         <a id="Ext.TabPanel-getPosition"></a>\r
2369             <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
2370                         <div class="short">Gets the current XY position of the component's underlying element.</div>\r
2371             <div class="long">\r
2372                 Gets the current XY position of the component's underlying element.    <div class="mdetail-params">\r
2373         <strong>Parameters:</strong>\r
2374         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
2375         <strong>Returns:</strong>\r
2376         <ul>\r
2377             <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>\r
2378         </ul>\r
2379     </div>\r
2380                 </div>\r
2381                         </div>\r
2382         </td>\r
2383         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>\r
2384     </tr>\r
2385         <tr class="method-row inherited expandable">\r
2386         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2387         <td class="sig">\r
2388         <a id="Ext.TabPanel-getSize"></a>\r
2389             <b>getSize</b>() : Object            <div class="mdesc">\r
2390                         <div class="short">Gets the current size of the component's underlying element.</div>\r
2391             <div class="long">\r
2392                 Gets the current size of the component's underlying element.    <div class="mdetail-params">\r
2393         <strong>Parameters:</strong>\r
2394         <ul><li>None.</li>        </ul>\r
2395         <strong>Returns:</strong>\r
2396         <ul>\r
2397             <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>\r
2398         </ul>\r
2399     </div>\r
2400                 </div>\r
2401                         </div>\r
2402         </td>\r
2403         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>\r
2404     </tr>\r
2405         <tr class="method-row alt expandable">\r
2406         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2407         <td class="sig">\r
2408         <a id="Ext.TabPanel-getTabEl"></a>\r
2409             <b>getTabEl</b>(&nbsp;<code>Panel/Number tab</code>&nbsp;) : HTMLElement            <div class="mdesc">\r
2410                         <div class="short">Gets the DOM element for tab strip item which activates the
2411 child panel with the specified ID. Access this to change ...</div>\r
2412             <div class="long">\r
2413                 Gets the DOM element for tab strip item which activates the
2414 child panel with the specified ID. Access this to change the visual treatment of the
2415 item, for example by changing the CSS class name.    <div class="mdetail-params">\r
2416         <strong>Parameters:</strong>\r
2417         <ul><li><code>tab</code> : Panel/Number<div class="sub-desc">The tab component, or the tab's index</div></li>        </ul>\r
2418         <strong>Returns:</strong>\r
2419         <ul>\r
2420             <li><code>HTMLElement</code><div class="sub-desc">The DOM node</div></li>\r
2421         </ul>\r
2422     </div>\r
2423                 </div>\r
2424                         </div>\r
2425         </td>\r
2426         <td class="msource">TabPanel</td>\r
2427     </tr>\r
2428         <tr class="method-row inherited expandable">\r
2429         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2430         <td class="sig">\r
2431         <a id="Ext.TabPanel-getTool"></a>\r
2432             <b>getTool</b>(&nbsp;<code>String id</code>&nbsp;) : Object            <div class="mdesc">\r
2433                         <div class="short">Retrieve a tool by id.</div>\r
2434             <div class="long">\r
2435                 Retrieve a tool by id.    <div class="mdetail-params">\r
2436         <strong>Parameters:</strong>\r
2437         <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>\r
2438         <strong>Returns:</strong>\r
2439         <ul>\r
2440             <li><code>Object</code><div class="sub-desc">tool</div></li>\r
2441         </ul>\r
2442     </div>\r
2443                 </div>\r
2444                         </div>\r
2445         </td>\r
2446         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getTool" href="output/Ext.Panel.html#getTool">Panel</a></td>\r
2447     </tr>\r
2448         <tr class="method-row inherited alt expandable">\r
2449         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2450         <td class="sig">\r
2451         <a id="Ext.TabPanel-getTopToolbar"></a>\r
2452             <b>getTopToolbar</b>() : Ext.Toolbar            <div class="mdesc">\r
2453                         <div class="short">Returns the toolbar from the top (tbar) section of the panel.</div>\r
2454             <div class="long">\r
2455                 Returns the toolbar from the top (tbar) section of the panel.    <div class="mdetail-params">\r
2456         <strong>Parameters:</strong>\r
2457         <ul><li>None.</li>        </ul>\r
2458         <strong>Returns:</strong>\r
2459         <ul>\r
2460             <li><code>Ext.Toolbar</code><div class="sub-desc">The toolbar</div></li>\r
2461         </ul>\r
2462     </div>\r
2463                 </div>\r
2464                         </div>\r
2465         </td>\r
2466         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getTopToolbar" href="output/Ext.Panel.html#getTopToolbar">Panel</a></td>\r
2467     </tr>\r
2468         <tr class="method-row inherited expandable">\r
2469         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2470         <td class="sig">\r
2471         <a id="Ext.TabPanel-getUpdater"></a>\r
2472             <b>getUpdater</b>() : Ext.Updater            <div class="mdesc">\r
2473                         <div class="short">Get the <a ext:cls="Ext.Updater" href="output/Ext.Updater.html">Ext.Updater</a> for this panel. Enables you to perform Ajax updates of this panel's body.</div>\r
2474             <div class="long">\r
2475                 Get the <a ext:cls="Ext.Updater" href="output/Ext.Updater.html">Ext.Updater</a> for this panel. Enables you to perform Ajax updates of this panel's body.    <div class="mdetail-params">\r
2476         <strong>Parameters:</strong>\r
2477         <ul><li>None.</li>        </ul>\r
2478         <strong>Returns:</strong>\r
2479         <ul>\r
2480             <li><code>Ext.Updater</code><div class="sub-desc">The Updater</div></li>\r
2481         </ul>\r
2482     </div>\r
2483                 </div>\r
2484                         </div>\r
2485         </td>\r
2486         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getUpdater" href="output/Ext.Panel.html#getUpdater">Panel</a></td>\r
2487     </tr>\r
2488         <tr class="method-row inherited alt expandable">\r
2489         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2490         <td class="sig">\r
2491         <a id="Ext.TabPanel-getXType"></a>\r
2492             <b>getXType</b>() : String            <div class="mdesc">\r
2493                         <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
2494 available xtypes, see the Ex...</div>\r
2495             <div class="long">\r
2496                 Gets the xtype for this component as registered with <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>. For a list of all
2497 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
2498 <pre><code>var t = <b>new</b> Ext.form.TextField();
2499 alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">\r
2500         <strong>Parameters:</strong>\r
2501         <ul><li>None.</li>        </ul>\r
2502         <strong>Returns:</strong>\r
2503         <ul>\r
2504             <li><code>String</code><div class="sub-desc">The xtype</div></li>\r
2505         </ul>\r
2506     </div>\r
2507                 </div>\r
2508                         </div>\r
2509         </td>\r
2510         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>\r
2511     </tr>\r
2512         <tr class="method-row inherited expandable">\r
2513         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2514         <td class="sig">\r
2515         <a id="Ext.TabPanel-getXTypes"></a>\r
2516             <b>getXTypes</b>() : String            <div class="mdesc">\r
2517                         <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
2518 available xtypes, see the Ext...</div>\r
2519             <div class="long">\r
2520                 <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
2521 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
2522 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
2523 to participate in determination of inherited xtypes.</b></p>
2524 <p>Example usage:</p>
2525 <pre><code>\r
2526 var t = new Ext.form.TextField();\r
2527 alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">\r
2528         <strong>Parameters:</strong>\r
2529         <ul><li>None.</li>        </ul>\r
2530         <strong>Returns:</strong>\r
2531         <ul>\r
2532             <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>\r
2533         </ul>\r
2534     </div>\r
2535                 </div>\r
2536                         </div>\r
2537         </td>\r
2538         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>\r
2539     </tr>\r
2540         <tr class="method-row inherited alt expandable">\r
2541         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2542         <td class="sig">\r
2543         <a id="Ext.TabPanel-hasListener"></a>\r
2544             <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">\r
2545                         <div class="short">Checks to see if this object has any listeners for a specified event</div>\r
2546             <div class="long">\r
2547                 Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">\r
2548         <strong>Parameters:</strong>\r
2549         <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>\r
2550         <strong>Returns:</strong>\r
2551         <ul>\r
2552             <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>\r
2553         </ul>\r
2554     </div>\r
2555                 </div>\r
2556                         </div>\r
2557         </td>\r
2558         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>\r
2559     </tr>\r
2560         <tr class="method-row inherited expandable">\r
2561         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2562         <td class="sig">\r
2563         <a id="Ext.TabPanel-hide"></a>\r
2564             <b>hide</b>() : Ext.Component            <div class="mdesc">\r
2565                         <div class="short">Hide this component.</div>\r
2566             <div class="long">\r
2567                 Hide this component.    <div class="mdetail-params">\r
2568         <strong>Parameters:</strong>\r
2569         <ul><li>None.</li>        </ul>\r
2570         <strong>Returns:</strong>\r
2571         <ul>\r
2572             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2573         </ul>\r
2574     </div>\r
2575                 </div>\r
2576                         </div>\r
2577         </td>\r
2578         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>\r
2579     </tr>\r
2580         <tr class="method-row alt expandable">\r
2581         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2582         <td class="sig">\r
2583         <a id="Ext.TabPanel-hideTabStripItem"></a>\r
2584             <b>hideTabStripItem</b>(&nbsp;<code>Number/String/Panel item</code>&nbsp;) : void            <div class="mdesc">\r
2585                         <div class="short">Hides the tab strip item for the passed tab</div>\r
2586             <div class="long">\r
2587                 Hides the tab strip item for the passed tab    <div class="mdetail-params">\r
2588         <strong>Parameters:</strong>\r
2589         <ul><li><code>item</code> : Number/String/Panel<div class="sub-desc">The tab index, id or item</div></li>        </ul>\r
2590         <strong>Returns:</strong>\r
2591         <ul>\r
2592             <li><code>void</code></li>\r
2593         </ul>\r
2594     </div>\r
2595                 </div>\r
2596                         </div>\r
2597         </td>\r
2598         <td class="msource">TabPanel</td>\r
2599     </tr>\r
2600         <tr class="method-row inherited expandable">\r
2601         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2602         <td class="sig">\r
2603         <a id="Ext.TabPanel-insert"></a>\r
2604             <b>insert</b>(&nbsp;<code>Number index</code>, <code>Ext.Component component</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
2605                         <div class="short">Inserts a Component into this Container at a specified index. Fires the
2606 beforeadd event before inserting, then fires ...</div>\r
2607             <div class="long">\r
2608                 Inserts a Component into this Container at a specified index. Fires the
2609 <a ext:cls="Ext.Container" ext:member="beforeadd" href="output/Ext.Container.html#beforeadd">beforeadd</a> event before inserting, then fires the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> event after the
2610 Component has been inserted.    <div class="mdetail-params">\r
2611         <strong>Parameters:</strong>\r
2612         <ul><li><code>index</code> : Number<div class="sub-desc">The index at which the Component will be inserted
2613 into the Container's items collection</div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The child Component to insert.<br><br>
2614 Ext uses lazy rendering, and will only render the inserted Component should
2615 it become necessary.<br><br>
2616 A Component config object may be passed in order to avoid the overhead of
2617 constructing a real Component object if lazy rendering might mean that the
2618 inserted Component will not be rendered immediately. To take advantage of
2619 this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config
2620 property to the registered type of the Component wanted.<br><br>
2621 For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>\r
2622         <strong>Returns:</strong>\r
2623         <ul>\r
2624             <li><code>Ext.Component</code><div class="sub-desc">component The Component (or config object) that was inserted with the Container's default config values applied.</div></li>\r
2625         </ul>\r
2626     </div>\r
2627                 </div>\r
2628                         </div>\r
2629         </td>\r
2630         <td class="msource"><a ext:cls="Ext.Container" ext:member="#insert" href="output/Ext.Container.html#insert">Container</a></td>\r
2631     </tr>\r
2632         <tr class="method-row inherited alt expandable">\r
2633         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2634         <td class="sig">\r
2635         <a id="Ext.TabPanel-isVisible"></a>\r
2636             <b>isVisible</b>() : void            <div class="mdesc">\r
2637                         <div class="short">Returns true if this component is visible.</div>\r
2638             <div class="long">\r
2639                 Returns true if this component is visible.    <div class="mdetail-params">\r
2640         <strong>Parameters:</strong>\r
2641         <ul><li>None.</li>        </ul>\r
2642         <strong>Returns:</strong>\r
2643         <ul>\r
2644             <li><code>void</code></li>\r
2645         </ul>\r
2646     </div>\r
2647                 </div>\r
2648                         </div>\r
2649         </td>\r
2650         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>\r
2651     </tr>\r
2652         <tr class="method-row inherited expandable">\r
2653         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2654         <td class="sig">\r
2655         <a id="Ext.TabPanel-isXType"></a>\r
2656             <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2657                         <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
2658 from th...</div>\r
2659             <div class="long">\r
2660                 <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
2661 from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
2662 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
2663 to participate in determination of inherited xtypes.</b></p>
2664 <p>For a list of all available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
2665 <p>Example usage:</p>
2666 <pre><code>var t = <b>new</b> Ext.form.TextField();
2667 <b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
2668 <b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
2669 <b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">\r
2670         <strong>Parameters:</strong>\r
2671         <ul><li><code>xtype</code> : String<div class="sub-desc">The xtype to check for this Component</div></li><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) False to check whether this Component is descended from the xtype (this is
2672 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
2673         <strong>Returns:</strong>\r
2674         <ul>\r
2675             <li><code>void</code></li>\r
2676         </ul>\r
2677     </div>\r
2678                 </div>\r
2679                         </div>\r
2680         </td>\r
2681         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>\r
2682     </tr>\r
2683         <tr class="method-row inherited alt expandable">\r
2684         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2685         <td class="sig">\r
2686         <a id="Ext.TabPanel-load"></a>\r
2687             <b>load</b>(&nbsp;<code>Object/String/Function config</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
2688                         <div class="short">Loads this content panel immediately with content returned from an XHR call.</div>\r
2689             <div class="long">\r
2690                 Loads this content panel immediately with content returned from an XHR call.    <div class="mdetail-params">\r
2691         <strong>Parameters:</strong>\r
2692         <ul><li><code>config</code> : Object/String/Function<div class="sub-desc">A config object containing any of the following options:\r
2693 <pre><code>panel.load({
2694     url: <em>"your-url.php"</em>,
2695     params: {param1: <em>"foo"</em>, param2: <em>"bar"</em>}, <i>// or a URL encoded string</i>
2696     callback: yourFunction,
2697     scope: yourObject, <i>// optional scope <b>for</b> the callback</i>
2698     discardUrl: false,
2699     nocache: false,
2700     text: <em>"Loading..."</em>,
2701     timeout: 30,
2702     scripts: false
2703 });</code></pre>
2704 The only required property is url. The optional properties nocache, text and scripts
2705 are shorthand for disableCaching, indicatorText and loadScripts and are used to set their
2706 associated property on this panel Updater instance.</div></li>        </ul>\r
2707         <strong>Returns:</strong>\r
2708         <ul>\r
2709             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
2710         </ul>\r
2711     </div>\r
2712                 </div>\r
2713                         </div>\r
2714         </td>\r
2715         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#load" href="output/Ext.Panel.html#load">Panel</a></td>\r
2716     </tr>\r
2717         <tr class="method-row inherited expandable">\r
2718         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2719         <td class="sig">\r
2720         <a id="Ext.TabPanel-on"></a>\r
2721             <b>on</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2722                         <div class="short">Appends an event handler to this element (shorthand for addListener)</div>\r
2723             <div class="long">\r
2724                 Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">\r
2725         <strong>Parameters:</strong>\r
2726         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The method the event invokes</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope in which to execute the handler
2727 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
2728         <strong>Returns:</strong>\r
2729         <ul>\r
2730             <li><code>void</code></li>\r
2731         </ul>\r
2732     </div>\r
2733                 </div>\r
2734                         </div>\r
2735         </td>\r
2736         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>\r
2737     </tr>\r
2738         <tr class="method-row inherited alt expandable">\r
2739         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2740         <td class="sig">\r
2741         <a id="Ext.TabPanel-purgeListeners"></a>\r
2742             <b>purgeListeners</b>() : void            <div class="mdesc">\r
2743                         <div class="short">Removes all listeners for this object</div>\r
2744             <div class="long">\r
2745                 Removes all listeners for this object    <div class="mdetail-params">\r
2746         <strong>Parameters:</strong>\r
2747         <ul><li>None.</li>        </ul>\r
2748         <strong>Returns:</strong>\r
2749         <ul>\r
2750             <li><code>void</code></li>\r
2751         </ul>\r
2752     </div>\r
2753                 </div>\r
2754                         </div>\r
2755         </td>\r
2756         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>\r
2757     </tr>\r
2758         <tr class="method-row expandable">\r
2759         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2760         <td class="sig">\r
2761         <a id="Ext.TabPanel-readTabs"></a>\r
2762             <b>readTabs</b>(&nbsp;<code>Boolean removeExisting</code>&nbsp;) : void            <div class="mdesc">\r
2763                         <div class="short">True to scan the markup in this tab panel for autoTabs using the autoTabSelector</div>\r
2764             <div class="long">\r
2765                 True to scan the markup in this tab panel for autoTabs using the autoTabSelector    <div class="mdetail-params">\r
2766         <strong>Parameters:</strong>\r
2767         <ul><li><code>removeExisting</code> : Boolean<div class="sub-desc">True to remove existing tabs</div></li>        </ul>\r
2768         <strong>Returns:</strong>\r
2769         <ul>\r
2770             <li><code>void</code></li>\r
2771         </ul>\r
2772     </div>\r
2773                 </div>\r
2774                         </div>\r
2775         </td>\r
2776         <td class="msource">TabPanel</td>\r
2777     </tr>\r
2778         <tr class="method-row inherited alt expandable">\r
2779         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2780         <td class="sig">\r
2781         <a id="Ext.TabPanel-relayEvents"></a>\r
2782             <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">\r
2783                         <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>\r
2784             <div class="long">\r
2785                 Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">\r
2786         <strong>Parameters:</strong>\r
2787         <ul><li><code>o</code> : Object<div class="sub-desc">The Observable whose events this object is to relay.</div></li><li><code>events</code> : Array<div class="sub-desc">Array of event names to relay.</div></li>        </ul>\r
2788         <strong>Returns:</strong>\r
2789         <ul>\r
2790             <li><code>void</code></li>\r
2791         </ul>\r
2792     </div>\r
2793                 </div>\r
2794                         </div>\r
2795         </td>\r
2796         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>\r
2797     </tr>\r
2798         <tr class="method-row inherited expandable">\r
2799         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2800         <td class="sig">\r
2801         <a id="Ext.TabPanel-remove"></a>\r
2802             <b>remove</b>(&nbsp;<code>Component/String component</code>, <span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
2803                         <div class="short">Removes a component from this container.  Fires the beforeremove event before removing, then fires
2804 the remove event a...</div>\r
2805             <div class="long">\r
2806                 Removes a component from this container.  Fires the <a ext:cls="Ext.Container" ext:member="beforeremove" href="output/Ext.Container.html#beforeremove">beforeremove</a> event before removing, then fires
2807 the <a ext:cls="Ext.Container" ext:member="remove" href="output/Ext.Container.html#remove">remove</a> event after the component has been removed.    <div class="mdetail-params">\r
2808         <strong>Parameters:</strong>\r
2809         <ul><li><code>component</code> : Component/String<div class="sub-desc">The component reference or id to remove.</div></li><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
2810 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
2811         <strong>Returns:</strong>\r
2812         <ul>\r
2813             <li><code>Ext.Component</code><div class="sub-desc">component The Component that was removed.</div></li>\r
2814         </ul>\r
2815     </div>\r
2816                 </div>\r
2817                         </div>\r
2818         </td>\r
2819         <td class="msource"><a ext:cls="Ext.Container" ext:member="#remove" href="output/Ext.Container.html#remove">Container</a></td>\r
2820     </tr>\r
2821         <tr class="method-row inherited alt expandable">\r
2822         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2823         <td class="sig">\r
2824         <a id="Ext.TabPanel-removeAll"></a>\r
2825             <b>removeAll</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
2826                         <div class="short">Removes all components from this container.</div>\r
2827             <div class="long">\r
2828                 Removes all components from this container.    <div class="mdetail-params">\r
2829         <strong>Parameters:</strong>\r
2830         <ul><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
2831 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
2832         <strong>Returns:</strong>\r
2833         <ul>\r
2834             <li><code>Array</code><div class="sub-desc">Array of the destroyed components</div></li>\r
2835         </ul>\r
2836     </div>\r
2837                 </div>\r
2838                         </div>\r
2839         </td>\r
2840         <td class="msource"><a ext:cls="Ext.Container" ext:member="#removeAll" href="output/Ext.Container.html#removeAll">Container</a></td>\r
2841     </tr>\r
2842         <tr class="method-row inherited expandable">\r
2843         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2844         <td class="sig">\r
2845         <a id="Ext.TabPanel-removeClass"></a>\r
2846             <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
2847                         <div class="short">Removes a CSS class from the component's underlying element.</div>\r
2848             <div class="long">\r
2849                 Removes a CSS class from the component's underlying element.    <div class="mdetail-params">\r
2850         <strong>Parameters:</strong>\r
2851         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>\r
2852         <strong>Returns:</strong>\r
2853         <ul>\r
2854             <li><code>void</code></li>\r
2855         </ul>\r
2856     </div>\r
2857                 </div>\r
2858                         </div>\r
2859         </td>\r
2860         <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>\r
2861     </tr>\r
2862         <tr class="method-row inherited alt expandable">\r
2863         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2864         <td class="sig">\r
2865         <a id="Ext.TabPanel-removeListener"></a>\r
2866             <b>removeListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2867                         <div class="short">Removes a listener</div>\r
2868             <div class="long">\r
2869                 Removes a listener    <div class="mdetail-params">\r
2870         <strong>Parameters:</strong>\r
2871         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
2872         <strong>Returns:</strong>\r
2873         <ul>\r
2874             <li><code>void</code></li>\r
2875         </ul>\r
2876     </div>\r
2877                 </div>\r
2878                         </div>\r
2879         </td>\r
2880         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>\r
2881     </tr>\r
2882         <tr class="method-row inherited expandable">\r
2883         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2884         <td class="sig">\r
2885         <a id="Ext.TabPanel-render"></a>\r
2886             <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Element/HTMLElement/String container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2887                         <div class="short">Render this Component into the passed HTML element.
2888 If you are using a Container object to house this Component, then...</div>\r
2889             <div class="long">\r
2890                 <p>Render this Component into the passed HTML element.</p>
2891 <p><b>If you are using a <a ext:cls="Ext.Container" href="output/Ext.Container.html">Container</a> object to house this Component, then
2892 do not use the render method.</b></p>
2893 <p>A Container's child Components are rendered by that Container's
2894 <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when the Container is first rendered.</p>
2895 <p>Certain layout managers allow dynamic addition of child components. Those that do
2896 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
2897 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
2898 <p>If the Container is already rendered when a new child Component is added, you may need to call
2899 the Container's <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any
2900 unrendered child Components to be rendered. This is required so that you can add multiple
2901 child components if needed while only refreshing the layout once.</p>
2902 <p>When creating complex UIs, it is important to remember that sizing and positioning
2903 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager.
2904 If you expect child items to be sized in response to user interactions, you must
2905 configure the Container with a layout manager which creates and manages the type of layout you
2906 have in mind.</p>
2907 <p><b>Omitting the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic
2908 layout manager is used which does nothing but render child components sequentially into the
2909 Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
2910         <strong>Parameters:</strong>\r
2911         <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
2912 rendered into. If it is being created from existing markup, this should be omitted.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
2913 which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>\r
2914         <strong>Returns:</strong>\r
2915         <ul>\r
2916             <li><code>void</code></li>\r
2917         </ul>\r
2918     </div>\r
2919                 </div>\r
2920                         </div>\r
2921         </td>\r
2922         <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>\r
2923     </tr>\r
2924         <tr class="method-row inherited alt expandable">\r
2925         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2926         <td class="sig">\r
2927         <a id="Ext.TabPanel-resumeEvents"></a>\r
2928             <b>resumeEvents</b>() : void            <div class="mdesc">\r
2929                         <div class="short">Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)</div>\r
2930             <div class="long">\r
2931                 Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)    <div class="mdetail-params">\r
2932         <strong>Parameters:</strong>\r
2933         <ul><li>None.</li>        </ul>\r
2934         <strong>Returns:</strong>\r
2935         <ul>\r
2936             <li><code>void</code></li>\r
2937         </ul>\r
2938     </div>\r
2939                 </div>\r
2940                         </div>\r
2941         </td>\r
2942         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>\r
2943     </tr>\r
2944         <tr class="method-row expandable">\r
2945         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2946         <td class="sig">\r
2947         <a id="Ext.TabPanel-scrollToTab"></a>\r
2948             <b>scrollToTab</b>(&nbsp;<code>Panel item</code>, <code>Boolean animate</code>&nbsp;) : void            <div class="mdesc">\r
2949                         <div class="short">Scrolls to a particular tab if tab scrolling is enabled</div>\r
2950             <div class="long">\r
2951                 Scrolls to a particular tab if tab scrolling is enabled    <div class="mdetail-params">\r
2952         <strong>Parameters:</strong>\r
2953         <ul><li><code>item</code> : Panel<div class="sub-desc">The item to scroll to</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True to enable animations</div></li>        </ul>\r
2954         <strong>Returns:</strong>\r
2955         <ul>\r
2956             <li><code>void</code></li>\r
2957         </ul>\r
2958     </div>\r
2959                 </div>\r
2960                         </div>\r
2961         </td>\r
2962         <td class="msource">TabPanel</td>\r
2963     </tr>\r
2964         <tr class="method-row alt expandable">\r
2965         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2966         <td class="sig">\r
2967         <a id="Ext.TabPanel-setActiveTab"></a>\r
2968             <b>setActiveTab</b>(&nbsp;<code>String/Panel tab</code>&nbsp;) : void            <div class="mdesc">\r
2969                         <div class="short">Sets the specified tab as the active tab. This method fires the beforetabchange event which
2970 can return false to cance...</div>\r
2971             <div class="long">\r
2972                 Sets the specified tab as the active tab. This method fires the <a ext:cls="Ext.TabPanel" ext:member="beforetabchange" href="output/Ext.TabPanel.html#beforetabchange">beforetabchange</a> event which
2973 can return false to cancel the tab change.    <div class="mdetail-params">\r
2974         <strong>Parameters:</strong>\r
2975         <ul><li><code>tab</code> : String/Panel<div class="sub-desc">The id or tab Panel to activate</div></li>        </ul>\r
2976         <strong>Returns:</strong>\r
2977         <ul>\r
2978             <li><code>void</code></li>\r
2979         </ul>\r
2980     </div>\r
2981                 </div>\r
2982                         </div>\r
2983         </td>\r
2984         <td class="msource">TabPanel</td>\r
2985     </tr>\r
2986         <tr class="method-row inherited expandable">\r
2987         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2988         <td class="sig">\r
2989         <a id="Ext.TabPanel-setDisabled"></a>\r
2990             <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">\r
2991                         <div class="short">Convenience function for setting disabled/enabled by boolean.</div>\r
2992             <div class="long">\r
2993                 Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">\r
2994         <strong>Parameters:</strong>\r
2995         <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>\r
2996         <strong>Returns:</strong>\r
2997         <ul>\r
2998             <li><code>void</code></li>\r
2999         </ul>\r
3000     </div>\r
3001                 </div>\r
3002                         </div>\r
3003         </td>\r
3004         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>\r
3005     </tr>\r
3006         <tr class="method-row inherited alt expandable">\r
3007         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3008         <td class="sig">\r
3009         <a id="Ext.TabPanel-setHeight"></a>\r
3010             <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3011                         <div class="short">Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
3012             <div class="long">\r
3013                 Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
3014         <strong>Parameters:</strong>\r
3015         <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>\r
3016         <strong>Returns:</strong>\r
3017         <ul>\r
3018             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3019         </ul>\r
3020     </div>\r
3021                 </div>\r
3022                         </div>\r
3023         </td>\r
3024         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>\r
3025     </tr>\r
3026         <tr class="method-row inherited expandable">\r
3027         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3028         <td class="sig">\r
3029         <a id="Ext.TabPanel-setIconClass"></a>\r
3030             <b>setIconClass</b>(&nbsp;<code>String cls</code>&nbsp;) : void            <div class="mdesc">\r
3031                         <div class="short">Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
3032 icon class if ...</div>\r
3033             <div class="long">\r
3034                 Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
3035 icon class if one has already been set.    <div class="mdetail-params">\r
3036         <strong>Parameters:</strong>\r
3037         <ul><li><code>cls</code> : String<div class="sub-desc">The new CSS class name</div></li>        </ul>\r
3038         <strong>Returns:</strong>\r
3039         <ul>\r
3040             <li><code>void</code></li>\r
3041         </ul>\r
3042     </div>\r
3043                 </div>\r
3044                         </div>\r
3045         </td>\r
3046         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#setIconClass" href="output/Ext.Panel.html#setIconClass">Panel</a></td>\r
3047     </tr>\r
3048         <tr class="method-row inherited alt expandable">\r
3049         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3050         <td class="sig">\r
3051         <a id="Ext.TabPanel-setPagePosition"></a>\r
3052             <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3053                         <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
3054 This method fires the ...</div>\r
3055             <div class="long">\r
3056                 Sets the page XY position of the component.  To set the left and top instead, use <a ext:cls="Ext.BoxComponent" ext:member="setPosition" href="output/Ext.BoxComponent.html#setPosition">setPosition</a>.
3057 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
3058         <strong>Parameters:</strong>\r
3059         <ul><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
3060         <strong>Returns:</strong>\r
3061         <ul>\r
3062             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3063         </ul>\r
3064     </div>\r
3065                 </div>\r
3066                         </div>\r
3067         </td>\r
3068         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>\r
3069     </tr>\r
3070         <tr class="method-row inherited expandable">\r
3071         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3072         <td class="sig">\r
3073         <a id="Ext.TabPanel-setPosition"></a>\r
3074             <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3075                         <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
3076 This method fires ...</div>\r
3077             <div class="long">\r
3078                 Sets the left and top of the component.  To set the page XY position instead, use <a ext:cls="Ext.BoxComponent" ext:member="setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">setPagePosition</a>.
3079 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
3080         <strong>Parameters:</strong>\r
3081         <ul><li><code>left</code> : Number<div class="sub-desc">The new left</div></li><li><code>top</code> : Number<div class="sub-desc">The new top</div></li>        </ul>\r
3082         <strong>Returns:</strong>\r
3083         <ul>\r
3084             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3085         </ul>\r
3086     </div>\r
3087                 </div>\r
3088                         </div>\r
3089         </td>\r
3090         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>\r
3091     </tr>\r
3092         <tr class="method-row inherited alt expandable">\r
3093         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3094         <td class="sig">\r
3095         <a id="Ext.TabPanel-setSize"></a>\r
3096             <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3097                         <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
3098 either width...</div>\r
3099             <div class="long">\r
3100                 Sets the width and height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.  This method can accept
3101 either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">\r
3102         <strong>Parameters:</strong>\r
3103         <ul><li><code>width</code> : Number/Object<div class="sub-desc">The new width to set, or a size object in the format {width, height}</div></li><li><code>height</code> : Number<div class="sub-desc">The new height to set (not required if a size object is passed as the first arg)</div></li>        </ul>\r
3104         <strong>Returns:</strong>\r
3105         <ul>\r
3106             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3107         </ul>\r
3108     </div>\r
3109                 </div>\r
3110                         </div>\r
3111         </td>\r
3112         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>\r
3113     </tr>\r
3114         <tr class="method-row inherited expandable">\r
3115         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3116         <td class="sig">\r
3117         <a id="Ext.TabPanel-setTitle"></a>\r
3118             <b>setTitle</b>(&nbsp;<code>String title</code>, <span class="optional" title="Optional">[<code>String iconCls</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3119                         <div class="short">Sets the title text for the panel and optionally the icon class.
3120 In order to be able to set the title, a header eleme...</div>\r
3121             <div class="long">\r
3122                 <p>Sets the title text for the panel and optionally the icon class.</p>
3123 <p>In order to be able to set the title, a header element must have been created
3124 for the Panel. This is triggered either by configuring the Panel with a non-blank title,
3125 or configuring it with <tt><b><a ext:cls="Ext.Panel" ext:member="header" href="output/Ext.Panel.html#header">header</a>: true</b></tt>.</p>    <div class="mdetail-params">\r
3126         <strong>Parameters:</strong>\r
3127         <ul><li><code>title</code> : String<div class="sub-desc">The title text to set</div></li><li><code>iconCls</code> : String<div class="sub-desc">(optional) iconCls A user-defined CSS class that provides the icon image for this panel</div></li>        </ul>\r
3128         <strong>Returns:</strong>\r
3129         <ul>\r
3130             <li><code>void</code></li>\r
3131         </ul>\r
3132     </div>\r
3133                 </div>\r
3134                         </div>\r
3135         </td>\r
3136         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#setTitle" href="output/Ext.Panel.html#setTitle">Panel</a></td>\r
3137     </tr>\r
3138         <tr class="method-row inherited alt expandable">\r
3139         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3140         <td class="sig">\r
3141         <a id="Ext.TabPanel-setVisible"></a>\r
3142             <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
3143                         <div class="short">Convenience function to hide or show this component by boolean.</div>\r
3144             <div class="long">\r
3145                 Convenience function to hide or show this component by boolean.    <div class="mdetail-params">\r
3146         <strong>Parameters:</strong>\r
3147         <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>\r
3148         <strong>Returns:</strong>\r
3149         <ul>\r
3150             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
3151         </ul>\r
3152     </div>\r
3153                 </div>\r
3154                         </div>\r
3155         </td>\r
3156         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>\r
3157     </tr>\r
3158         <tr class="method-row inherited expandable">\r
3159         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3160         <td class="sig">\r
3161         <a id="Ext.TabPanel-setWidth"></a>\r
3162             <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3163                         <div class="short">Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
3164             <div class="long">\r
3165                 Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
3166         <strong>Parameters:</strong>\r
3167         <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>\r
3168         <strong>Returns:</strong>\r
3169         <ul>\r
3170             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3171         </ul>\r
3172     </div>\r
3173                 </div>\r
3174                         </div>\r
3175         </td>\r
3176         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>\r
3177     </tr>\r
3178         <tr class="method-row inherited alt expandable">\r
3179         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3180         <td class="sig">\r
3181         <a id="Ext.TabPanel-show"></a>\r
3182             <b>show</b>() : Ext.Component            <div class="mdesc">\r
3183                         <div class="short">Show this component.</div>\r
3184             <div class="long">\r
3185                 Show this component.    <div class="mdetail-params">\r
3186         <strong>Parameters:</strong>\r
3187         <ul><li>None.</li>        </ul>\r
3188         <strong>Returns:</strong>\r
3189         <ul>\r
3190             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
3191         </ul>\r
3192     </div>\r
3193                 </div>\r
3194                         </div>\r
3195         </td>\r
3196         <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>\r
3197     </tr>\r
3198         <tr class="method-row inherited expandable">\r
3199         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3200         <td class="sig">\r
3201         <a id="Ext.TabPanel-suspendEvents"></a>\r
3202             <b>suspendEvents</b>() : void            <div class="mdesc">\r
3203                         <div class="short">Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)</div>\r
3204             <div class="long">\r
3205                 Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)    <div class="mdetail-params">\r
3206         <strong>Parameters:</strong>\r
3207         <ul><li>None.</li>        </ul>\r
3208         <strong>Returns:</strong>\r
3209         <ul>\r
3210             <li><code>void</code></li>\r
3211         </ul>\r
3212     </div>\r
3213                 </div>\r
3214                         </div>\r
3215         </td>\r
3216         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>\r
3217     </tr>\r
3218         <tr class="method-row inherited alt expandable">\r
3219         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3220         <td class="sig">\r
3221         <a id="Ext.TabPanel-syncSize"></a>\r
3222             <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">\r
3223                         <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>\r
3224             <div class="long">\r
3225                 Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">\r
3226         <strong>Parameters:</strong>\r
3227         <ul><li>None.</li>        </ul>\r
3228         <strong>Returns:</strong>\r
3229         <ul>\r
3230             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3231         </ul>\r
3232     </div>\r
3233                 </div>\r
3234                         </div>\r
3235         </td>\r
3236         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>\r
3237     </tr>\r
3238         <tr class="method-row inherited expandable">\r
3239         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3240         <td class="sig">\r
3241         <a id="Ext.TabPanel-toggleCollapse"></a>\r
3242             <b>toggleCollapse</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
3243                         <div class="short">Shortcut for performing an <a ext:cls="Ext.Panel" ext:member="expand" href="output/Ext.Panel.html#expand">expand</a> or <a ext:cls="Ext.Panel" ext:member="collapse" href="output/Ext.Panel.html#collapse">collapse</a> based on the current state of the panel.</div>\r
3244             <div class="long">\r
3245                 Shortcut for performing an <a ext:cls="Ext.Panel" ext:member="expand" href="output/Ext.Panel.html#expand">expand</a> or <a ext:cls="Ext.Panel" ext:member="collapse" href="output/Ext.Panel.html#collapse">collapse</a> based on the current state of the panel.    <div class="mdetail-params">\r
3246         <strong>Parameters:</strong>\r
3247         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
3248 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
3249         <strong>Returns:</strong>\r
3250         <ul>\r
3251             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
3252         </ul>\r
3253     </div>\r
3254                 </div>\r
3255                         </div>\r
3256         </td>\r
3257         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#toggleCollapse" href="output/Ext.Panel.html#toggleCollapse">Panel</a></td>\r
3258     </tr>\r
3259         <tr class="method-row inherited alt expandable">\r
3260         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3261         <td class="sig">\r
3262         <a id="Ext.TabPanel-un"></a>\r
3263             <b>un</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3264                         <div class="short">Removes a listener (shorthand for removeListener)</div>\r
3265             <div class="long">\r
3266                 Removes a listener (shorthand for removeListener)    <div class="mdetail-params">\r
3267         <strong>Parameters:</strong>\r
3268         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
3269         <strong>Returns:</strong>\r
3270         <ul>\r
3271             <li><code>void</code></li>\r
3272         </ul>\r
3273     </div>\r
3274                 </div>\r
3275                         </div>\r
3276         </td>\r
3277         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>\r
3278     </tr>\r
3279         <tr class="method-row expandable">\r
3280         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3281         <td class="sig">\r
3282         <a id="Ext.TabPanel-unhideTabStripItem"></a>\r
3283             <b>unhideTabStripItem</b>(&nbsp;<code>Number/String/Panel item</code>&nbsp;) : void            <div class="mdesc">\r
3284                         <div class="short">Unhides the tab strip item for the passed tab</div>\r
3285             <div class="long">\r
3286                 Unhides the tab strip item for the passed tab    <div class="mdetail-params">\r
3287         <strong>Parameters:</strong>\r
3288         <ul><li><code>item</code> : Number/String/Panel<div class="sub-desc">The tab index, id or item</div></li>        </ul>\r
3289         <strong>Returns:</strong>\r
3290         <ul>\r
3291             <li><code>void</code></li>\r
3292         </ul>\r
3293     </div>\r
3294                 </div>\r
3295                         </div>\r
3296         </td>\r
3297         <td class="msource">TabPanel</td>\r
3298     </tr>\r
3299         <tr class="method-row inherited alt expandable">\r
3300         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3301         <td class="sig">\r
3302         <a id="Ext.TabPanel-updateBox"></a>\r
3303             <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3304                         <div class="short">Sets the current box measurements of the component's underlying element.</div>\r
3305             <div class="long">\r
3306                 Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
3307         <strong>Parameters:</strong>\r
3308         <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>\r
3309         <strong>Returns:</strong>\r
3310         <ul>\r
3311             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3312         </ul>\r
3313     </div>\r
3314                 </div>\r
3315                         </div>\r
3316         </td>\r
3317         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>\r
3318     </tr>\r
3319             </table>
3320                 <a id="Ext.TabPanel-events"></a>
3321         <h2>Public Events</h2>
3322                 <table cellspacing="0" class="member-table">
3323             <tr>
3324                 <th class="sig-header" colspan="2">Event</th>
3325                 <th class="msource-header">Defined By</th>
3326             </tr>
3327                 <tr class="event-row inherited expandable">\r
3328         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3329         <td class="sig">\r
3330         <a id="Ext.TabPanel-activate"></a>\r
3331             <b>activate</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3332                         <div class="short">Fires after the Panel has been visually activated.
3333 Note that Panels do not directly support being activated, but some...</div>\r
3334             <div class="long">\r
3335                 Fires after the Panel has been visually activated.
3336 Note that Panels do not directly support being activated, but some Panel subclasses
3337 do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>). Panels which are child Components of a TabPanel fire the
3338 activate and deactivate events under the control of the TabPanel.    <div class="mdetail-params">\r
3339         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3340         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been activated.</div></li>        </ul>\r
3341     </div>\r
3342                 </div>\r
3343                         </div>\r
3344         </td>\r
3345         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-activate" href="output/Ext.Panel.html#event-activate">Panel</a></td>\r
3346     </tr>\r
3347         <tr class="event-row inherited alt expandable">\r
3348         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3349         <td class="sig">\r
3350         <a id="Ext.TabPanel-add"></a>\r
3351             <b>add</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
3352                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.</div>\r
3353             <div class="long">\r
3354                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.    <div class="mdetail-params">\r
3355         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3356         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component was added to the container's items collection</div></li>        </ul>\r
3357     </div>\r
3358                 </div>\r
3359                         </div>\r
3360         </td>\r
3361         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-add" href="output/Ext.Container.html#event-add">Container</a></td>\r
3362     </tr>\r
3363         <tr class="event-row inherited expandable">\r
3364         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3365         <td class="sig">\r
3366         <a id="Ext.TabPanel-afterlayout"></a>\r
3367             <b>afterlayout</b> : (&nbsp;<code>Ext.Container this</code>, <code>ContainerLayout layout</code>&nbsp;)            <div class="mdesc">\r
3368                         <div class="short">Fires when the components in this container are arranged by the associated layout manager.</div>\r
3369             <div class="long">\r
3370                 Fires when the components in this container are arranged by the associated layout manager.    <div class="mdetail-params">\r
3371         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3372         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>layout</code> : ContainerLayout<div class="sub-desc">The ContainerLayout implementation for this container</div></li>        </ul>\r
3373     </div>\r
3374                 </div>\r
3375                         </div>\r
3376         </td>\r
3377         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-afterlayout" href="output/Ext.Container.html#event-afterlayout">Container</a></td>\r
3378     </tr>\r
3379         <tr class="event-row inherited alt expandable">\r
3380         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3381         <td class="sig">\r
3382         <a id="Ext.TabPanel-beforeadd"></a>\r
3383             <b>beforeadd</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
3384                         <div class="short">Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
3385 A handler can return false to cancel the add.</div>\r
3386             <div class="long">\r
3387                 Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
3388 A handler can return false to cancel the add.    <div class="mdetail-params">\r
3389         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3390         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component will be added to the container's items collection</div></li>        </ul>\r
3391     </div>\r
3392                 </div>\r
3393                         </div>\r
3394         </td>\r
3395         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-beforeadd" href="output/Ext.Container.html#event-beforeadd">Container</a></td>\r
3396     </tr>\r
3397         <tr class="event-row inherited expandable">\r
3398         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3399         <td class="sig">\r
3400         <a id="Ext.TabPanel-beforeclose"></a>\r
3401             <b>beforeclose</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3402                         <div class="short">Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
3403 Panel subclasses d...</div>\r
3404             <div class="long">\r
3405                 Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
3406 Panel subclasses do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>).  This event only applies to such subclasses.
3407 A handler can return false to cancel the close.    <div class="mdetail-params">\r
3408         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3409         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel being closed.</div></li>        </ul>\r
3410     </div>\r
3411                 </div>\r
3412                         </div>\r
3413         </td>\r
3414         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforeclose" href="output/Ext.Panel.html#event-beforeclose">Panel</a></td>\r
3415     </tr>\r
3416         <tr class="event-row inherited alt expandable">\r
3417         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3418         <td class="sig">\r
3419         <a id="Ext.TabPanel-beforecollapse"></a>\r
3420             <b>beforecollapse</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Boolean animate</code>&nbsp;)            <div class="mdesc">\r
3421                         <div class="short">Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.</div>\r
3422             <div class="long">\r
3423                 Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.    <div class="mdetail-params">\r
3424         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3425         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel being collapsed.</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True if the collapse is animated, else false.</div></li>        </ul>\r
3426     </div>\r
3427                 </div>\r
3428                         </div>\r
3429         </td>\r
3430         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforecollapse" href="output/Ext.Panel.html#event-beforecollapse">Panel</a></td>\r
3431     </tr>\r
3432         <tr class="event-row inherited expandable">\r
3433         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3434         <td class="sig">\r
3435         <a id="Ext.TabPanel-beforedestroy"></a>\r
3436             <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3437                         <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>\r
3438             <div class="long">\r
3439                 Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">\r
3440         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3441         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3442     </div>\r
3443                 </div>\r
3444                         </div>\r
3445         </td>\r
3446         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>\r
3447     </tr>\r
3448         <tr class="event-row inherited alt expandable">\r
3449         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3450         <td class="sig">\r
3451         <a id="Ext.TabPanel-beforeexpand"></a>\r
3452             <b>beforeexpand</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Boolean animate</code>&nbsp;)            <div class="mdesc">\r
3453                         <div class="short">Fires before the Panel is expanded.  A handler can return false to cancel the expand.</div>\r
3454             <div class="long">\r
3455                 Fires before the Panel is expanded.  A handler can return false to cancel the expand.    <div class="mdetail-params">\r
3456         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3457         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel being expanded.</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True if the expand is animated, else false.</div></li>        </ul>\r
3458     </div>\r
3459                 </div>\r
3460                         </div>\r
3461         </td>\r
3462         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforeexpand" href="output/Ext.Panel.html#event-beforeexpand">Panel</a></td>\r
3463     </tr>\r
3464         <tr class="event-row inherited expandable">\r
3465         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3466         <td class="sig">\r
3467         <a id="Ext.TabPanel-beforehide"></a>\r
3468             <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3469                         <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>\r
3470             <div class="long">\r
3471                 Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">\r
3472         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3473         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3474     </div>\r
3475                 </div>\r
3476                         </div>\r
3477         </td>\r
3478         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>\r
3479     </tr>\r
3480         <tr class="event-row inherited alt expandable">\r
3481         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3482         <td class="sig">\r
3483         <a id="Ext.TabPanel-beforeremove"></a>\r
3484             <b>beforeremove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
3485                         <div class="short">Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.  A handler can return
3486 false to cancel the remove.</div>\r
3487             <div class="long">\r
3488                 Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.  A handler can return
3489 false to cancel the remove.    <div class="mdetail-params">\r
3490         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3491         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being removed</div></li>        </ul>\r
3492     </div>\r
3493                 </div>\r
3494                         </div>\r
3495         </td>\r
3496         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-beforeremove" href="output/Ext.Container.html#event-beforeremove">Container</a></td>\r
3497     </tr>\r
3498         <tr class="event-row inherited expandable">\r
3499         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3500         <td class="sig">\r
3501         <a id="Ext.TabPanel-beforerender"></a>\r
3502             <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3503                         <div class="short">Fires before the component is rendered. Return false to stop the render.</div>\r
3504             <div class="long">\r
3505                 Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">\r
3506         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3507         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3508     </div>\r
3509                 </div>\r
3510                         </div>\r
3511         </td>\r
3512         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>\r
3513     </tr>\r
3514         <tr class="event-row inherited alt expandable">\r
3515         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3516         <td class="sig">\r
3517         <a id="Ext.TabPanel-beforeshow"></a>\r
3518             <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3519                         <div class="short">Fires before the component is shown. Return false to stop the show.</div>\r
3520             <div class="long">\r
3521                 Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">\r
3522         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3523         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3524     </div>\r
3525                 </div>\r
3526                         </div>\r
3527         </td>\r
3528         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>\r
3529     </tr>\r
3530         <tr class="event-row inherited expandable">\r
3531         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3532         <td class="sig">\r
3533         <a id="Ext.TabPanel-beforestaterestore"></a>\r
3534             <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3535                         <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>\r
3536             <div class="long">\r
3537                 Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">\r
3538         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3539         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3540     </div>\r
3541                 </div>\r
3542                         </div>\r
3543         </td>\r
3544         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>\r
3545     </tr>\r
3546         <tr class="event-row inherited alt expandable">\r
3547         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3548         <td class="sig">\r
3549         <a id="Ext.TabPanel-beforestatesave"></a>\r
3550             <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3551                         <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>\r
3552             <div class="long">\r
3553                 Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">\r
3554         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3555         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3556     </div>\r
3557                 </div>\r
3558                         </div>\r
3559         </td>\r
3560         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>\r
3561     </tr>\r
3562         <tr class="event-row expandable">\r
3563         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3564         <td class="sig">\r
3565         <a id="Ext.TabPanel-beforetabchange"></a>\r
3566             <b>beforetabchange</b> : (&nbsp;<code>TabPanel this</code>, <code>Panel newTab</code>, <code>Panel currentTab</code>&nbsp;)            <div class="mdesc">\r
3567                         <div class="short">Fires before the active tab changes. Handlers can return false to cancel the tab change.</div>\r
3568             <div class="long">\r
3569                 Fires before the active tab changes. Handlers can return false to cancel the tab change.    <div class="mdetail-params">\r
3570         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3571         <ul><li><code>this</code> : TabPanel<div class="sub-desc"></div></li><li><code>newTab</code> : Panel<div class="sub-desc">The tab being activated</div></li><li><code>currentTab</code> : Panel<div class="sub-desc">The current active tab</div></li>        </ul>\r
3572     </div>\r
3573                 </div>\r
3574                         </div>\r
3575         </td>\r
3576         <td class="msource">TabPanel</td>\r
3577     </tr>\r
3578         <tr class="event-row inherited alt expandable">\r
3579         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3580         <td class="sig">\r
3581         <a id="Ext.TabPanel-bodyresize"></a>\r
3582             <b>bodyresize</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Number width</code>, <code>Number height</code>&nbsp;)            <div class="mdesc">\r
3583                         <div class="short">Fires after the Panel has been resized.</div>\r
3584             <div class="long">\r
3585                 Fires after the Panel has been resized.    <div class="mdetail-params">\r
3586         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3587         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has been resized.</div></li><li><code>width</code> : Number<div class="sub-desc">The Panel's new width.</div></li><li><code>height</code> : Number<div class="sub-desc">The Panel's new height.</div></li>        </ul>\r
3588     </div>\r
3589                 </div>\r
3590                         </div>\r
3591         </td>\r
3592         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-bodyresize" href="output/Ext.Panel.html#event-bodyresize">Panel</a></td>\r
3593     </tr>\r
3594         <tr class="event-row inherited expandable">\r
3595         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3596         <td class="sig">\r
3597         <a id="Ext.TabPanel-close"></a>\r
3598             <b>close</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3599                         <div class="short">Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
3600 Panel subclasses do...</div>\r
3601             <div class="long">\r
3602                 Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
3603 Panel subclasses do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>).    <div class="mdetail-params">\r
3604         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3605         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been closed.</div></li>        </ul>\r
3606     </div>\r
3607                 </div>\r
3608                         </div>\r
3609         </td>\r
3610         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-close" href="output/Ext.Panel.html#event-close">Panel</a></td>\r
3611     </tr>\r
3612         <tr class="event-row inherited alt expandable">\r
3613         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3614         <td class="sig">\r
3615         <a id="Ext.TabPanel-collapse"></a>\r
3616             <b>collapse</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3617                         <div class="short">Fires after the Panel has been collapsed.</div>\r
3618             <div class="long">\r
3619                 Fires after the Panel has been collapsed.    <div class="mdetail-params">\r
3620         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3621         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel that has been collapsed.</div></li>        </ul>\r
3622     </div>\r
3623                 </div>\r
3624                         </div>\r
3625         </td>\r
3626         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-collapse" href="output/Ext.Panel.html#event-collapse">Panel</a></td>\r
3627     </tr>\r
3628         <tr class="event-row expandable">\r
3629         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3630         <td class="sig">\r
3631         <a id="Ext.TabPanel-contextmenu"></a>\r
3632             <b>contextmenu</b> : (&nbsp;<code>TabPanel this</code>, <code>Panel tab</code>, <code>EventObject e</code>&nbsp;)            <div class="mdesc">\r
3633                         <div class="short">Relays the contextmenu event from a tab selector element in the tab strip.</div>\r
3634             <div class="long">\r
3635                 Relays the contextmenu event from a tab selector element in the tab strip.    <div class="mdetail-params">\r
3636         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3637         <ul><li><code>this</code> : TabPanel<div class="sub-desc"></div></li><li><code>tab</code> : Panel<div class="sub-desc">The target tab</div></li><li><code>e</code> : EventObject<div class="sub-desc"></div></li>        </ul>\r
3638     </div>\r
3639                 </div>\r
3640                         </div>\r
3641         </td>\r
3642         <td class="msource">TabPanel</td>\r
3643     </tr>\r
3644         <tr class="event-row inherited alt expandable">\r
3645         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3646         <td class="sig">\r
3647         <a id="Ext.TabPanel-deactivate"></a>\r
3648             <b>deactivate</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3649                         <div class="short">Fires after the Panel has been visually deactivated.
3650 Note that Panels do not directly support being deactivated, but ...</div>\r
3651             <div class="long">\r
3652                 Fires after the Panel has been visually deactivated.
3653 Note that Panels do not directly support being deactivated, but some Panel subclasses
3654 do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>). Panels which are child Components of a TabPanel fire the
3655 activate and deactivate events under the control of the TabPanel.    <div class="mdetail-params">\r
3656         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3657         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been deactivated.</div></li>        </ul>\r
3658     </div>\r
3659                 </div>\r
3660                         </div>\r
3661         </td>\r
3662         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-deactivate" href="output/Ext.Panel.html#event-deactivate">Panel</a></td>\r
3663     </tr>\r
3664         <tr class="event-row inherited expandable">\r
3665         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3666         <td class="sig">\r
3667         <a id="Ext.TabPanel-destroy"></a>\r
3668             <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3669                         <div class="short">Fires after the component is destroyed.</div>\r
3670             <div class="long">\r
3671                 Fires after the component is destroyed.    <div class="mdetail-params">\r
3672         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3673         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3674     </div>\r
3675                 </div>\r
3676                         </div>\r
3677         </td>\r
3678         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>\r
3679     </tr>\r
3680         <tr class="event-row inherited alt expandable">\r
3681         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3682         <td class="sig">\r
3683         <a id="Ext.TabPanel-disable"></a>\r
3684             <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3685                         <div class="short">Fires after the component is disabled.</div>\r
3686             <div class="long">\r
3687                 Fires after the component is disabled.    <div class="mdetail-params">\r
3688         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3689         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3690     </div>\r
3691                 </div>\r
3692                         </div>\r
3693         </td>\r
3694         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>\r
3695     </tr>\r
3696         <tr class="event-row inherited expandable">\r
3697         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3698         <td class="sig">\r
3699         <a id="Ext.TabPanel-enable"></a>\r
3700             <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3701                         <div class="short">Fires after the component is enabled.</div>\r
3702             <div class="long">\r
3703                 Fires after the component is enabled.    <div class="mdetail-params">\r
3704         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3705         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3706     </div>\r
3707                 </div>\r
3708                         </div>\r
3709         </td>\r
3710         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>\r
3711     </tr>\r
3712         <tr class="event-row inherited alt expandable">\r
3713         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3714         <td class="sig">\r
3715         <a id="Ext.TabPanel-expand"></a>\r
3716             <b>expand</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3717                         <div class="short">Fires after the Panel has been expanded.</div>\r
3718             <div class="long">\r
3719                 Fires after the Panel has been expanded.    <div class="mdetail-params">\r
3720         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3721         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been expanded.</div></li>        </ul>\r
3722     </div>\r
3723                 </div>\r
3724                         </div>\r
3725         </td>\r
3726         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-expand" href="output/Ext.Panel.html#event-expand">Panel</a></td>\r
3727     </tr>\r
3728         <tr class="event-row inherited expandable">\r
3729         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3730         <td class="sig">\r
3731         <a id="Ext.TabPanel-hide"></a>\r
3732             <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3733                         <div class="short">Fires after the component is hidden.</div>\r
3734             <div class="long">\r
3735                 Fires after the component is hidden.    <div class="mdetail-params">\r
3736         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3737         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3738     </div>\r
3739                 </div>\r
3740                         </div>\r
3741         </td>\r
3742         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>\r
3743     </tr>\r
3744         <tr class="event-row inherited alt expandable">\r
3745         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3746         <td class="sig">\r
3747         <a id="Ext.TabPanel-iconchange"></a>\r
3748             <b>iconchange</b> : (&nbsp;<code>Ext.Panel p</code>, <code>String The</code>, <code>String The</code>&nbsp;)            <div class="mdesc">\r
3749                         <div class="short">Fires after the Panel icon class has been set or changed.</div>\r
3750             <div class="long">\r
3751                 Fires after the Panel icon class has been set or changed.    <div class="mdetail-params">\r
3752         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3753         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has had its icon class changed.</div></li><li><code>The</code> : String<div class="sub-desc">new icon class.</div></li><li><code>The</code> : String<div class="sub-desc">old icon class.</div></li>        </ul>\r
3754     </div>\r
3755                 </div>\r
3756                         </div>\r
3757         </td>\r
3758         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-iconchange" href="output/Ext.Panel.html#event-iconchange">Panel</a></td>\r
3759     </tr>\r
3760         <tr class="event-row inherited expandable">\r
3761         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3762         <td class="sig">\r
3763         <a id="Ext.TabPanel-move"></a>\r
3764             <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">\r
3765                         <div class="short">Fires after the component is moved.</div>\r
3766             <div class="long">\r
3767                 Fires after the component is moved.    <div class="mdetail-params">\r
3768         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3769         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
3770     </div>\r
3771                 </div>\r
3772                         </div>\r
3773         </td>\r
3774         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>\r
3775     </tr>\r
3776         <tr class="event-row inherited alt expandable">\r
3777         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3778         <td class="sig">\r
3779         <a id="Ext.TabPanel-remove"></a>\r
3780             <b>remove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
3781                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.</div>\r
3782             <div class="long">\r
3783                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.    <div class="mdetail-params">\r
3784         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3785         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was removed</div></li>        </ul>\r
3786     </div>\r
3787                 </div>\r
3788                         </div>\r
3789         </td>\r
3790         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-remove" href="output/Ext.Container.html#event-remove">Container</a></td>\r
3791     </tr>\r
3792         <tr class="event-row inherited expandable">\r
3793         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3794         <td class="sig">\r
3795         <a id="Ext.TabPanel-render"></a>\r
3796             <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3797                         <div class="short">Fires after the component is rendered.</div>\r
3798             <div class="long">\r
3799                 Fires after the component is rendered.    <div class="mdetail-params">\r
3800         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3801         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3802     </div>\r
3803                 </div>\r
3804                         </div>\r
3805         </td>\r
3806         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>\r
3807     </tr>\r
3808         <tr class="event-row inherited alt expandable">\r
3809         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3810         <td class="sig">\r
3811         <a id="Ext.TabPanel-resize"></a>\r
3812             <b>resize</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number adjWidth</code>, <code>Number adjHeight</code>, <code>Number rawWidth</code>, <code>Number rawHeight</code>&nbsp;)            <div class="mdesc">\r
3813                         <div class="short">Fires after the component is resized.</div>\r
3814             <div class="long">\r
3815                 Fires after the component is resized.    <div class="mdetail-params">\r
3816         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3817         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>adjWidth</code> : Number<div class="sub-desc">The box-adjusted width that was set</div></li><li><code>adjHeight</code> : Number<div class="sub-desc">The box-adjusted height that was set</div></li><li><code>rawWidth</code> : Number<div class="sub-desc">The width that was originally specified</div></li><li><code>rawHeight</code> : Number<div class="sub-desc">The height that was originally specified</div></li>        </ul>\r
3818     </div>\r
3819                 </div>\r
3820                         </div>\r
3821         </td>\r
3822         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>\r
3823     </tr>\r
3824         <tr class="event-row inherited expandable">\r
3825         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3826         <td class="sig">\r
3827         <a id="Ext.TabPanel-show"></a>\r
3828             <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3829                         <div class="short">Fires after the component is shown.</div>\r
3830             <div class="long">\r
3831                 Fires after the component is shown.    <div class="mdetail-params">\r
3832         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3833         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3834     </div>\r
3835                 </div>\r
3836                         </div>\r
3837         </td>\r
3838         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>\r
3839     </tr>\r
3840         <tr class="event-row inherited alt expandable">\r
3841         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3842         <td class="sig">\r
3843         <a id="Ext.TabPanel-staterestore"></a>\r
3844             <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3845                         <div class="short">Fires after the state of the component is restored.</div>\r
3846             <div class="long">\r
3847                 Fires after the state of the component is restored.    <div class="mdetail-params">\r
3848         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3849         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3850     </div>\r
3851                 </div>\r
3852                         </div>\r
3853         </td>\r
3854         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>\r
3855     </tr>\r
3856         <tr class="event-row inherited expandable">\r
3857         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3858         <td class="sig">\r
3859         <a id="Ext.TabPanel-statesave"></a>\r
3860             <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3861                         <div class="short">Fires after the state of the component is saved to the configured state provider.</div>\r
3862             <div class="long">\r
3863                 Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">\r
3864         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3865         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3866     </div>\r
3867                 </div>\r
3868                         </div>\r
3869         </td>\r
3870         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>\r
3871     </tr>\r
3872         <tr class="event-row alt expandable">\r
3873         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3874         <td class="sig">\r
3875         <a id="Ext.TabPanel-tabchange"></a>\r
3876             <b>tabchange</b> : (&nbsp;<code>TabPanel this</code>, <code>Panel tab</code>&nbsp;)            <div class="mdesc">\r
3877                         <div class="short">Fires after the active tab has changed.</div>\r
3878             <div class="long">\r
3879                 Fires after the active tab has changed.    <div class="mdetail-params">\r
3880         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3881         <ul><li><code>this</code> : TabPanel<div class="sub-desc"></div></li><li><code>tab</code> : Panel<div class="sub-desc">The new active tab</div></li>        </ul>\r
3882     </div>\r
3883                 </div>\r
3884                         </div>\r
3885         </td>\r
3886         <td class="msource">TabPanel</td>\r
3887     </tr>\r
3888         <tr class="event-row inherited expandable">\r
3889         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3890         <td class="sig">\r
3891         <a id="Ext.TabPanel-titlechange"></a>\r
3892             <b>titlechange</b> : (&nbsp;<code>Ext.Panel p</code>, <code>String The</code>&nbsp;)            <div class="mdesc">\r
3893                         <div class="short">Fires after the Panel title has been set or changed.</div>\r
3894             <div class="long">\r
3895                 Fires after the Panel title has been set or changed.    <div class="mdetail-params">\r
3896         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3897         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has had its title changed.</div></li><li><code>The</code> : String<div class="sub-desc">new title.</div></li>        </ul>\r
3898     </div>\r
3899                 </div>\r
3900                         </div>\r
3901         </td>\r
3902         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-titlechange" href="output/Ext.Panel.html#event-titlechange">Panel</a></td>\r
3903     </tr>\r
3904             </table>
3905         
3906         </div>