Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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