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.Container-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4
            <a class="inner-link" href="#Ext.Container-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5
            <a class="inner-link" href="#Ext.Container-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6
                            <a class="inner-link" href="#Ext.Container-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7
                        <a class="bookmark" href="../docs/?class=Ext.Container"><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"/>Container</pre></div>
14
                <h1>Class Ext.Container</h1>
15
        <table cellspacing="0">
16
            <tr><td class="label">Package:</td><td class="hd-info">Ext</td></tr>
17
            <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../source/widgets/Container.js" target="_blank">Container.js</a></td></tr>
18
            <tr><td class="label">Class:</td><td class="hd-info">Container</td></tr>
19
                        <tr><td class="label">Subclasses:</td><td class="hd-info"><a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Panel</a>, <a ext:cls="Ext.Viewport" href="output/Ext.Viewport.html">Viewport</a></td></tr>
20
                                    <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.BoxComponent" ext:member="" href="output/Ext.BoxComponent.html">BoxComponent</a></td></tr>
21
                    </table>
22
        <div class="description">
23
            Base class for any <a ext:cls="Ext.BoxComponent" href="output/Ext.BoxComponent.html">Ext.BoxComponent</a> that can contain other components.  Containers handle the basic
24
behavior of containing items, namely adding, inserting and removing them.  The specific layout logic required
25
to visually render contained items is delegated to any one of the different <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> classes available.
26
This class is intended to be extended and should generally not need to be created directly via the new keyword.        </div>
27
 
28
        <div class="hr"></div>
29
                <a id="Ext.Container-configs"></a>
30
        <h2>Config Options</h2>
31
        <table cellspacing="0" class="member-table">
32
            <tr>
33
                <th class="sig-header" colspan="2">Config Options</th>
34
                <th class="msource-header">Defined By</th>
35
            </tr>
36
                <tr class="config-row expandable">
37
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
38
        <td class="sig">
39
        <a id="Ext.Container-activeItem"></a>
40
            <b>activeItem</b> : String/Number            <div class="mdesc">
41
                        <div class="short">A string component id or the numeric index of the component that should be initially activated within the container's...</div>
42
            <div class="long">
43
                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>
44
                        </div>
45
        </td>
46
        <td class="msource">Container</td>
47
    </tr>
48
        <tr class="config-row inherited alt">
49
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
50
        <td class="sig">
51
        <a id="Ext.Container-allowDomMove"></a>
52
            <b>allowDomMove</b> : Boolean            <div class="mdesc">
53
                            Whether the component can move the Dom node when rendering (defaults to true).                        </div>
54
        </td>
55
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>
56
    </tr>
57
        <tr class="config-row inherited expandable">
58
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
59
        <td class="sig">
60
        <a id="Ext.Container-applyTo"></a>
61
            <b>applyTo</b> : Mixed            <div class="mdesc">
62
                        <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>
63
            <div class="long">
64
                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>
65
                        </div>
66
        </td>
67
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>
68
    </tr>
69
        <tr class="config-row alt expandable">
70
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
71
        <td class="sig">
72
        <a id="Ext.Container-autoDestroy"></a>
73
            <b>autoDestroy</b> : Boolean            <div class="mdesc">
74
                        <div class="short">If true the container will automatically destroy any contained component that is removed from it, else destruction mu...</div>
75
            <div class="long">
76
                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>
77
                        </div>
78
        </td>
79
        <td class="msource">Container</td>
80
    </tr>
81
        <tr class="config-row inherited expandable">
82
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
83
        <td class="sig">
84
        <a id="Ext.Container-autoEl"></a>
85
            <b>autoEl</b> : String/Object            <div class="mdesc">
86
                        <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>
87
            <div class="long">
88
                A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inline via JSON. It should not be used for higher level components which already create their own elements. Example usage: <pre><code>{xtype:<em>'box'</em>, autoEl: <em>'div'</em>, cls:<em>'my-class'</em>}
89
{xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>
90
                        </div>
91
        </td>
92
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>
93
    </tr>
94
        <tr class="config-row inherited alt expandable">
95
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
96
        <td class="sig">
97
        <a id="Ext.Container-autoHeight"></a>
98
            <b>autoHeight</b> : Boolean            <div class="mdesc">
99
                        <div class="short">True to use height:'auto', false to use fixed height. Note: although many components inherit this config option, not ...</div>
100
            <div class="long">
101
                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>
102
                        </div>
103
        </td>
104
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>
105
    </tr>
106
        <tr class="config-row inherited expandable">
107
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
108
        <td class="sig">
109
        <a id="Ext.Container-autoShow"></a>
110
            <b>autoShow</b> : Boolean            <div class="mdesc">
111
                        <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>
112
            <div class="long">
113
                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>
114
                        </div>
115
        </td>
116
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>
117
    </tr>
118
        <tr class="config-row inherited alt expandable">
119
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
120
        <td class="sig">
121
        <a id="Ext.Container-autoWidth"></a>
122
            <b>autoWidth</b> : Boolean            <div class="mdesc">
123
                        <div class="short">True to use width:'auto', false to use fixed width. Note: although many components inherit this config option, not al...</div>
124
            <div class="long">
125
                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>
126
                        </div>
127
        </td>
128
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>
129
    </tr>
130
        <tr class="config-row expandable">
131
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
132
        <td class="sig">
133
        <a id="Ext.Container-bufferResize"></a>
134
            <b>bufferResize</b> : Boolean/Number            <div class="mdesc">
135
                        <div class="short">When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer t...</div>
136
            <div class="long">
137
                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>
138
                        </div>
139
        </td>
140
        <td class="msource">Container</td>
141
    </tr>
142
        <tr class="config-row inherited alt expandable">
143
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
144
        <td class="sig">
145
        <a id="Ext.Container-cls"></a>
146
            <b>cls</b> : String            <div class="mdesc">
147
                        <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>
148
            <div class="long">
149
                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>
150
                        </div>
151
        </td>
152
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>
153
    </tr>
154
        <tr class="config-row inherited expandable">
155
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
156
        <td class="sig">
157
        <a id="Ext.Container-ctCls"></a>
158
            <b>ctCls</b> : String            <div class="mdesc">
159
                        <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>
160
            <div class="long">
161
                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>
162
                        </div>
163
        </td>
164
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>
165
    </tr>
166
        <tr class="config-row alt">
167
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
168
        <td class="sig">
169
        <a id="Ext.Container-defaultType"></a>
170
            <b>defaultType</b> : String            <div class="mdesc">
171
                            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>
172
        </td>
173
        <td class="msource">Container</td>
174
    </tr>
175
        <tr class="config-row expandable">
176
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
177
        <td class="sig">
178
        <a id="Ext.Container-defaults"></a>
179
            <b>defaults</b> : Object            <div class="mdesc">
180
                        <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>
181
            <div class="long">
182
                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>
183
                        </div>
184
        </td>
185
        <td class="msource">Container</td>
186
    </tr>
187
        <tr class="config-row inherited alt">
188
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
189
        <td class="sig">
190
        <a id="Ext.Container-disabledClass"></a>
191
            <b>disabledClass</b> : String            <div class="mdesc">
192
                            CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>
193
        </td>
194
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>
195
    </tr>
196
        <tr class="config-row inherited">
197
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
198
        <td class="sig">
199
        <a id="Ext.Container-height"></a>
200
            <b>height</b> : Number            <div class="mdesc">
201
                            The height of this component in pixels (defaults to auto).                        </div>
202
        </td>
203
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>
204
    </tr>
205
        <tr class="config-row alt expandable">
206
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
207
        <td class="sig">
208
        <a id="Ext.Container-hideBorders"></a>
209
            <b>hideBorders</b> : Boolean            <div class="mdesc">
210
                        <div class="short">True to hide the borders of each contained component, false to defer to the component's existing border settings (def...</div>
211
            <div class="long">
212
                True to hide the borders of each contained component, false to defer to the component's existing border settings (defaults to false).            </div>
213
                        </div>
214
        </td>
215
        <td class="msource">Container</td>
216
    </tr>
217
        <tr class="config-row inherited expandable">
218
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
219
        <td class="sig">
220
        <a id="Ext.Container-hideMode"></a>
221
            <b>hideMode</b> : String            <div class="mdesc">
222
                        <div class="short">How this component should hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset posi...</div>
223
            <div class="long">
224
                How this component should hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".            </div>
225
                        </div>
226
        </td>
227
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>
228
    </tr>
229
        <tr class="config-row inherited alt expandable">
230
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
231
        <td class="sig">
232
        <a id="Ext.Container-hideParent"></a>
233
            <b>hideParent</b> : Boolean            <div class="mdesc">
234
                        <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>
235
            <div class="long">
236
                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>
237
                        </div>
238
        </td>
239
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>
240
    </tr>
241
        <tr class="config-row inherited">
242
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
243
        <td class="sig">
244
        <a id="Ext.Container-id"></a>
245
            <b>id</b> : String            <div class="mdesc">
246
                            The unique id of this component (defaults to an auto-assigned id).                        </div>
247
        </td>
248
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>
249
    </tr>
250
        <tr class="config-row alt expandable">
251
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
252
        <td class="sig">
253
        <a id="Ext.Container-items"></a>
254
            <b>items</b> : Mixed            <div class="mdesc">
255
                        <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>
256
            <div class="long">
257
                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>
258
                        </div>
259
        </td>
260
        <td class="msource">Container</td>
261
    </tr>
262
        <tr class="config-row expandable">
263
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
264
        <td class="sig">
265
        <a id="Ext.Container-layout"></a>
266
            <b>layout</b> : String            <div class="mdesc">
267
                        <div class="short">The layout type to be used in this container. If not specified, a default Ext.layout.ContainerLayout will be created ...</div>
268
            <div class="long">
269
                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>
270
                        </div>
271
        </td>
272
        <td class="msource">Container</td>
273
    </tr>
274
        <tr class="config-row alt expandable">
275
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
276
        <td class="sig">
277
        <a id="Ext.Container-layoutConfig"></a>
278
            <b>layoutConfig</b> : Object            <div class="mdesc">
279
                        <div class="short">This is a config object containing properties specific to the chosen layout (to be used in conjunction with the layou...</div>
280
            <div class="long">
281
                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>
282
                        </div>
283
        </td>
284
        <td class="msource">Container</td>
285
    </tr>
286
        <tr class="config-row inherited expandable">
287
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
288
        <td class="sig">
289
        <a id="Ext.Container-listeners"></a>
290
            <b>listeners</b> : Object            <div class="mdesc">
291
                        <div class="short">A config object containing one or more event handlers to be added to this object during initialization. This should b...</div>
292
            <div class="long">
293
                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>
294
                        </div>
295
        </td>
296
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>
297
    </tr>
298
        <tr class="config-row alt expandable">
299
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
300
        <td class="sig">
301
        <a id="Ext.Container-monitorResize"></a>
302
            <b>monitorResize</b> : Boolean            <div class="mdesc">
303
                        <div class="short">True to automatically monitor window resize events to handle anything that is sensitive to the current size of the vi...</div>
304
            <div class="long">
305
                True to automatically monitor window resize events to handle anything that is sensitive to the current size of the viewport. This value is typically managed by the chosen <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> and should not need to be set manually.            </div>
306
                        </div>
307
        </td>
308
        <td class="msource">Container</td>
309
    </tr>
310
        <tr class="config-row inherited">
311
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
312
        <td class="sig">
313
        <a id="Ext.Container-pageX"></a>
314
            <b>pageX</b> : Number            <div class="mdesc">
315
                            The page level x coordinate for this component if contained within a positioning container.                        </div>
316
        </td>
317
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>
318
    </tr>
319
        <tr class="config-row inherited alt">
320
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
321
        <td class="sig">
322
        <a id="Ext.Container-pageY"></a>
323
            <b>pageY</b> : Number            <div class="mdesc">
324
                            The page level y coordinate for this component if contained within a positioning container.                        </div>
325
        </td>
326
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>
327
    </tr>
328
        <tr class="config-row inherited expandable">
329
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
330
        <td class="sig">
331
        <a id="Ext.Container-plugins"></a>
332
            <b>plugins</b> : Object/Array            <div class="mdesc">
333
                        <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>
334
            <div class="long">
335
                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>
336
                        </div>
337
        </td>
338
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>
339
    </tr>
340
        <tr class="config-row inherited alt expandable">
341
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
342
        <td class="sig">
343
        <a id="Ext.Container-renderTo"></a>
344
            <b>renderTo</b> : Mixed            <div class="mdesc">
345
                        <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>
346
            <div class="long">
347
                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>
348
                        </div>
349
        </td>
350
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>
351
    </tr>
352
        <tr class="config-row inherited expandable">
353
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
354
        <td class="sig">
355
        <a id="Ext.Container-stateEvents"></a>
356
            <b>stateEvents</b> : Array            <div class="mdesc">
357
                        <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>
358
            <div class="long">
359
                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>
360
                        </div>
361
        </td>
362
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>
363
    </tr>
364
        <tr class="config-row inherited alt expandable">
365
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
366
        <td class="sig">
367
        <a id="Ext.Container-stateId"></a>
368
            <b>stateId</b> : String            <div class="mdesc">
369
                        <div class="short">The unique id for this component to use for state management purposes (defaults to the component id). See stateful fo...</div>
370
            <div class="long">
371
                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>
372
                        </div>
373
        </td>
374
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>
375
    </tr>
376
        <tr class="config-row inherited expandable">
377
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
378
        <td class="sig">
379
        <a id="Ext.Container-stateful"></a>
380
            <b>stateful</b> : Boolean            <div class="mdesc">
381
                        <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>
382
            <div class="long">
383
                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>
384
                        </div>
385
        </td>
386
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>
387
    </tr>
388
        <tr class="config-row inherited alt expandable">
389
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
390
        <td class="sig">
391
        <a id="Ext.Container-style"></a>
392
            <b>style</b> : String            <div class="mdesc">
393
                        <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>
394
            <div class="long">
395
                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>
396
                        </div>
397
        </td>
398
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>
399
    </tr>
400
        <tr class="config-row inherited">
401
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
402
        <td class="sig">
403
        <a id="Ext.Container-width"></a>
404
            <b>width</b> : Number            <div class="mdesc">
405
                            The width of this component in pixels (defaults to auto).                        </div>
406
        </td>
407
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>
408
    </tr>
409
        <tr class="config-row inherited alt">
410
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
411
        <td class="sig">
412
        <a id="Ext.Container-x"></a>
413
            <b>x</b> : Number            <div class="mdesc">
414
                            The local x (left) coordinate for this component if contained within a positioning container.                        </div>
415
        </td>
416
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>
417
    </tr>
418
        <tr class="config-row inherited expandable">
419
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
420
        <td class="sig">
421
        <a id="Ext.Container-xtype"></a>
422
            <b>xtype</b> : String            <div class="mdesc">
423
                        <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>
424
            <div class="long">
425
                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>
426
                        </div>
427
        </td>
428
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>
429
    </tr>
430
        <tr class="config-row inherited alt">
431
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
432
        <td class="sig">
433
        <a id="Ext.Container-y"></a>
434
            <b>y</b> : Number            <div class="mdesc">
435
                            The local y (top) coordinate for this component if contained within a positioning container.                        </div>
436
        </td>
437
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>
438
    </tr>
439
            </table>
440
                <a id="Ext.Container-props"></a>
441
        <h2>Public Properties</h2>
442
                <table cellspacing="0" class="member-table">
443
            <tr>
444
                <th class="sig-header" colspan="2">Property</th>
445
                <th class="msource-header">Defined By</th>
446
            </tr>
447
                <tr class="property-row inherited">
448
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
449
        <td class="sig">
450
        <a id="Ext.Container-disabled"></a>
451
            <b>disabled</b> : Boolean            <div class="mdesc">
452
                            True if this component is disabled. Read-only.                        </div>
453
        </td>
454
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
455
    </tr>
456
        <tr class="property-row inherited alt">
457
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
458
        <td class="sig">
459
        <a id="Ext.Container-hidden"></a>
460
            <b>hidden</b> : Boolean            <div class="mdesc">
461
 
462
True if this component is hidden. Read-only.                        </div>
463
        </td>
464
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
465
    </tr>
466
        <tr class="property-row inherited">
467
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
468
        <td class="sig">
469
        <a id="Ext.Container-initialConfig"></a>
470
            <b>initialConfig</b> : Object            <div class="mdesc">
471
                            This Component's initial configuration specification. Read-only.                        </div>
472
        </td>
473
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>
474
    </tr>
475
        <tr class="property-row alt">
476
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
477
        <td class="sig">
478
        <a id="Ext.Container-items"></a>
479
            <b>items</b> : MixedCollection            <div class="mdesc">
480
                            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>
481
        </td>
482
        <td class="msource">Container</td>
483
    </tr>
484
        <tr class="property-row inherited expandable">
485
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
486
        <td class="sig">
487
        <a id="Ext.Container-ownerCt"></a>
488
            <b>ownerCt</b> : Ext.Container            <div class="mdesc">
489
                        <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
490
the component is added to a...</div>
491
            <div class="long">
492
                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
493
the component is added to a container).  Read-only.            </div>
494
                        </div>
495
        </td>
496
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>
497
    </tr>
498
        <tr class="property-row inherited alt">
499
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
500
        <td class="sig">
501
        <a id="Ext.Container-rendered"></a>
502
            <b>rendered</b> : Boolean            <div class="mdesc">
503
                            True if this component has been rendered. Read-only.                        </div>
504
        </td>
505
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>
506
    </tr>
507
            </table>
508
                <a id="Ext.Container-methods"></a>
509
        <h2>Public Methods</h2>
510
                <table cellspacing="0" class="member-table">
511
            <tr>
512
                <th class="sig-header" colspan="2">Method</th>
513
                <th class="msource-header">Defined By</th>
514
            </tr>
515
                <tr class="method-row expandable">
516
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
517
        <td class="sig">
518
        <a id="Ext.Container-add"></a>
519
            <b>add</b>(&nbsp;<code>Ext.Component/Object component</code>&nbsp;) : Ext.Component            <div class="mdesc">
520
                        <div class="short">Adds a component to this container. Fires the beforeadd event before adding,
521
then fires the add event after the compo...</div>
522
            <div class="long">
523
                Adds a component to this container. Fires the beforeadd event before adding,
524
then fires the add event after the component has been added.  If the container is
525
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
526
the view.  This is required so that you can add multiple child components if needed
527
while only refreshing the layout once.    <div class="mdetail-params">
528
        <strong>Parameters:</strong>
529
        <ul><li><code>component</code> : Ext.Component/Object<div class="sub-desc">The component to add.<br><br>
530
Ext uses lazy rendering, and will only render the added Component should
531
it become necessary.<br><br>
532
A Component config object may be passed in order to avoid the overhead of
533
constructing a real Component object if lazy rendering might mean that the
534
added Component will not be rendered immediately. To take advantage of this
535
"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
536
the registered type of the Component wanted.<br><br>
537
For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>
538
        <strong>Returns:</strong>
539
        <ul>
540
            <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>
541
        </ul>
542
    </div>
543
                </div>
544
                        </div>
545
        </td>
546
        <td class="msource">Container</td>
547
    </tr>
548
        <tr class="method-row inherited alt expandable">
549
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
550
        <td class="sig">
551
        <a id="Ext.Container-addClass"></a>
552
            <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
553
                        <div class="short">Adds a CSS class to the component's underlying element.</div>
554
            <div class="long">
555
                Adds a CSS class to the component's underlying element.    <div class="mdetail-params">
556
        <strong>Parameters:</strong>
557
        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>
558
        <strong>Returns:</strong>
559
        <ul>
560
            <li><code>void</code></li>
561
        </ul>
562
    </div>
563
                </div>
564
                        </div>
565
        </td>
566
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>
567
    </tr>
568
        <tr class="method-row inherited expandable">
569
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
570
        <td class="sig">
571
        <a id="Ext.Container-addEvents"></a>
572
            <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">
573
                        <div class="short">Used to define events on this Observable</div>
574
            <div class="long">
575
                Used to define events on this Observable    <div class="mdetail-params">
576
        <strong>Parameters:</strong>
577
        <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>
578
        <strong>Returns:</strong>
579
        <ul>
580
            <li><code>void</code></li>
581
        </ul>
582
    </div>
583
                </div>
584
                        </div>
585
        </td>
586
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>
587
    </tr>
588
        <tr class="method-row inherited alt expandable">
589
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
590
        <td class="sig">
591
        <a id="Ext.Container-addListener"></a>
592
            <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">
593
                        <div class="short">Appends an event handler to this component</div>
594
            <div class="long">
595
                Appends an event handler to this component    <div class="mdetail-params">
596
        <strong>Parameters:</strong>
597
        <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
598
function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
599
properties. This may contain any of the following properties:<ul>
600
<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>
601
<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>
602
<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>
603
<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
604
by the specified number of milliseconds. If the event fires again within that time, the original
605
handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
606
</ul><br>
607
<p>
608
<b>Combining Options</b><br>
609
Using the options argument, it is possible to combine different types of listeners:<br>
610
<br>
611
A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
612
<pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
613
    single: true,
614
    delay: 100,
615
    forumId: 4
616
});</code></pre>
617
<p>
618
<b>Attaching multiple handlers in 1 call</b><br>
619
The method also allows for a single argument to be passed which is a config object containing properties
620
which specify multiple handlers.
621
<p>
622
<pre><code>foo.on({
623
    <em>'click'</em> : {
624
        fn: <b>this</b>.onClick,
625
        scope: <b>this</b>,
626
        delay: 100
627
    },
628
    <em>'mouseover'</em> : {
629
        fn: <b>this</b>.onMouseOver,
630
        scope: <b>this</b>
631
    },
632
    <em>'mouseout'</em> : {
633
        fn: <b>this</b>.onMouseOut,
634
        scope: <b>this</b>
635
    }
636
});</code></pre>
637
<p>
638
Or a shorthand syntax:<br>
639
<pre><code>foo.on({
640
    <em>'click'</em> : <b>this</b>.onClick,
641
    <em>'mouseover'</em> : <b>this</b>.onMouseOver,
642
    <em>'mouseout'</em> : <b>this</b>.onMouseOut,
643
     scope: <b>this</b>
644
});</code></pre></div></li>        </ul>
645
        <strong>Returns:</strong>
646
        <ul>
647
            <li><code>void</code></li>
648
        </ul>
649
    </div>
650
                </div>
651
                        </div>
652
        </td>
653
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>
654
    </tr>
655
        <tr class="method-row inherited expandable">
656
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
657
        <td class="sig">
658
        <a id="Ext.Container-applyToMarkup"></a>
659
            <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">
660
                        <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>
661
            <div class="long">
662
                Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">
663
        <strong>Parameters:</strong>
664
        <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>
665
        <strong>Returns:</strong>
666
        <ul>
667
            <li><code>void</code></li>
668
        </ul>
669
    </div>
670
                </div>
671
                        </div>
672
        </td>
673
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>
674
    </tr>
675
        <tr class="method-row alt expandable">
676
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
677
        <td class="sig">
678
        <a id="Ext.Container-bubble"></a>
679
            <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">
680
                        <div class="short">Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of...</div>
681
            <div class="long">
682
                Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of
683
function call will be the scope provided or the current component. The arguments to the function
684
will be the args provided or the current component. If the function returns false at any point,
685
the bubble is stopped.    <div class="mdetail-params">
686
        <strong>Parameters:</strong>
687
        <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>
688
        <strong>Returns:</strong>
689
        <ul>
690
            <li><code>void</code></li>
691
        </ul>
692
    </div>
693
                </div>
694
                        </div>
695
        </td>
696
        <td class="msource">Container</td>
697
    </tr>
698
        <tr class="method-row expandable">
699
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
700
        <td class="sig">
701
        <a id="Ext.Container-cascade"></a>
702
            <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">
703
                        <div class="short">Cascades down the component/container heirarchy from this component (called first), calling the specified function wi...</div>
704
            <div class="long">
705
                Cascades down the component/container heirarchy from this component (called first), calling the specified function with
706
each component. The scope (<i>this</i>) of
707
function call will be the scope provided or the current component. The arguments to the function
708
will be the args provided or the current component. If the function returns false at any point,
709
the cascade is stopped on that branch.    <div class="mdetail-params">
710
        <strong>Parameters:</strong>
711
        <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>
712
        <strong>Returns:</strong>
713
        <ul>
714
            <li><code>void</code></li>
715
        </ul>
716
    </div>
717
                </div>
718
                        </div>
719
        </td>
720
        <td class="msource">Container</td>
721
    </tr>
722
        <tr class="method-row inherited alt expandable">
723
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
724
        <td class="sig">
725
        <a id="Ext.Container-cloneConfig"></a>
726
            <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">
727
                        <div class="short">Clone the current component using the original config values passed into this instance by default.</div>
728
            <div class="long">
729
                Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">
730
        <strong>Parameters:</strong>
731
        <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
732
An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>
733
        <strong>Returns:</strong>
734
        <ul>
735
            <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>
736
        </ul>
737
    </div>
738
                </div>
739
                        </div>
740
        </td>
741
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>
742
    </tr>
743
        <tr class="method-row inherited expandable">
744
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
745
        <td class="sig">
746
        <a id="Ext.Container-destroy"></a>
747
            <b>destroy</b>() : void            <div class="mdesc">
748
                        <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
749
removing the c...</div>
750
            <div class="long">
751
                Destroys this component by purging any event listeners, removing the component's element from the DOM,
752
removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
753
<a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
754
should usually not need to be called directly.    <div class="mdetail-params">
755
        <strong>Parameters:</strong>
756
        <ul><li>None.</li>        </ul>
757
        <strong>Returns:</strong>
758
        <ul>
759
            <li><code>void</code></li>
760
        </ul>
761
    </div>
762
                </div>
763
                        </div>
764
        </td>
765
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>
766
    </tr>
767
        <tr class="method-row inherited alt expandable">
768
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
769
        <td class="sig">
770
        <a id="Ext.Container-disable"></a>
771
            <b>disable</b>() : Ext.Component            <div class="mdesc">
772
                        <div class="short">Disable this component.</div>
773
            <div class="long">
774
                Disable this component.    <div class="mdetail-params">
775
        <strong>Parameters:</strong>
776
        <ul><li>None.</li>        </ul>
777
        <strong>Returns:</strong>
778
        <ul>
779
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
780
        </ul>
781
    </div>
782
                </div>
783
                        </div>
784
        </td>
785
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>
786
    </tr>
787
        <tr class="method-row expandable">
788
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
789
        <td class="sig">
790
        <a id="Ext.Container-doLayout"></a>
791
            <b>doLayout</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">
792
                        <div class="short">Force this container's layout to be recalculated. A call to this function is required after adding a new component
793
to...</div>
794
            <div class="long">
795
                Force this container's layout to be recalculated. A call to this function is required after adding a new component
796
to an already rendered container, or possibly after changing sizing/position properties of child components.    <div class="mdetail-params">
797
        <strong>Parameters:</strong>
798
        <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
799
calc layouts as required (defaults to false, which calls doLayout recursively for each subcontainer)</div></li>        </ul>
800
        <strong>Returns:</strong>
801
        <ul>
802
            <li><code>void</code></li>
803
        </ul>
804
    </div>
805
                </div>
806
                        </div>
807
        </td>
808
        <td class="msource">Container</td>
809
    </tr>
810
        <tr class="method-row inherited alt expandable">
811
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
812
        <td class="sig">
813
        <a id="Ext.Container-enable"></a>
814
            <b>enable</b>() : Ext.Component            <div class="mdesc">
815
                        <div class="short">Enable this component.</div>
816
            <div class="long">
817
                Enable this component.    <div class="mdetail-params">
818
        <strong>Parameters:</strong>
819
        <ul><li>None.</li>        </ul>
820
        <strong>Returns:</strong>
821
        <ul>
822
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
823
        </ul>
824
    </div>
825
                </div>
826
                        </div>
827
        </td>
828
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>
829
    </tr>
830
        <tr class="method-row expandable">
831
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
832
        <td class="sig">
833
        <a id="Ext.Container-find"></a>
834
            <b>find</b>(&nbsp;<code>String prop</code>, <code>String value</code>&nbsp;) : Array            <div class="mdesc">
835
                        <div class="short">Find a component under this container at any level by property</div>
836
            <div class="long">
837
                Find a component under this container at any level by property    <div class="mdetail-params">
838
        <strong>Parameters:</strong>
839
        <ul><li><code>prop</code> : String<div class="sub-desc"></div></li><li><code>value</code> : String<div class="sub-desc"></div></li>        </ul>
840
        <strong>Returns:</strong>
841
        <ul>
842
            <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>
843
        </ul>
844
    </div>
845
                </div>
846
                        </div>
847
        </td>
848
        <td class="msource">Container</td>
849
    </tr>
850
        <tr class="method-row alt expandable">
851
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
852
        <td class="sig">
853
        <a id="Ext.Container-findBy"></a>
854
            <b>findBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">
855
                        <div class="short">Find a component under this container at any level by a custom function. If the passed function returns
856
true, the com...</div>
857
            <div class="long">
858
                Find a component under this container at any level by a custom function. If the passed function returns
859
true, the component will be included in the results. The passed function is called with the arguments (component, this container).    <div class="mdetail-params">
860
        <strong>Parameters:</strong>
861
        <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>
862
        <strong>Returns:</strong>
863
        <ul>
864
            <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>
865
        </ul>
866
    </div>
867
                </div>
868
                        </div>
869
        </td>
870
        <td class="msource">Container</td>
871
    </tr>
872
        <tr class="method-row expandable">
873
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
874
        <td class="sig">
875
        <a id="Ext.Container-findById"></a>
876
            <b>findById</b>(&nbsp;<code>String id</code>&nbsp;) : Ext.Component            <div class="mdesc">
877
                        <div class="short">Find a component under this container at any level by id</div>
878
            <div class="long">
879
                Find a component under this container at any level by id    <div class="mdetail-params">
880
        <strong>Parameters:</strong>
881
        <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>
882
        <strong>Returns:</strong>
883
        <ul>
884
            <li><code>Ext.Component</code></li>
885
        </ul>
886
    </div>
887
                </div>
888
                        </div>
889
        </td>
890
        <td class="msource">Container</td>
891
    </tr>
892
        <tr class="method-row alt expandable">
893
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
894
        <td class="sig">
895
        <a id="Ext.Container-findByType"></a>
896
            <b>findByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Array            <div class="mdesc">
897
                        <div class="short">Find a component under this container at any level by xtype or class</div>
898
            <div class="long">
899
                Find a component under this container at any level by xtype or class    <div class="mdetail-params">
900
        <strong>Parameters:</strong>
901
        <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>
902
        <strong>Returns:</strong>
903
        <ul>
904
            <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>
905
        </ul>
906
    </div>
907
                </div>
908
                        </div>
909
        </td>
910
        <td class="msource">Container</td>
911
    </tr>
912
        <tr class="method-row inherited expandable">
913
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
914
        <td class="sig">
915
        <a id="Ext.Container-findParentBy"></a>
916
            <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">
917
                        <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
918
true, the con...</div>
919
            <div class="long">
920
                Find a container above this component at any level by a custom function. If the passed function returns
921
true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">
922
        <strong>Parameters:</strong>
923
        <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>
924
        <strong>Returns:</strong>
925
        <ul>
926
            <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>
927
        </ul>
928
    </div>
929
                </div>
930
                        </div>
931
        </td>
932
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>
933
    </tr>
934
        <tr class="method-row inherited alt expandable">
935
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
936
        <td class="sig">
937
        <a id="Ext.Container-findParentByType"></a>
938
            <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Container            <div class="mdesc">
939
                        <div class="short">Find a container above this component at any level by xtype or class</div>
940
            <div class="long">
941
                Find a container above this component at any level by xtype or class    <div class="mdetail-params">
942
        <strong>Parameters:</strong>
943
        <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>
944
        <strong>Returns:</strong>
945
        <ul>
946
            <li><code>Container</code><div class="sub-desc">The found container</div></li>
947
        </ul>
948
    </div>
949
                </div>
950
                        </div>
951
        </td>
952
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>
953
    </tr>
954
        <tr class="method-row inherited expandable">
955
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
956
        <td class="sig">
957
        <a id="Ext.Container-fireEvent"></a>
958
            <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">
959
                        <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>
960
            <div class="long">
961
                Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">
962
        <strong>Parameters:</strong>
963
        <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>
964
        <strong>Returns:</strong>
965
        <ul>
966
            <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>
967
        </ul>
968
    </div>
969
                </div>
970
                        </div>
971
        </td>
972
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>
973
    </tr>
974
        <tr class="method-row inherited alt expandable">
975
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
976
        <td class="sig">
977
        <a id="Ext.Container-focus"></a>
978
            <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">
979
                        <div class="short">Try to focus this component.</div>
980
            <div class="long">
981
                Try to focus this component.    <div class="mdetail-params">
982
        <strong>Parameters:</strong>
983
        <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>
984
        <strong>Returns:</strong>
985
        <ul>
986
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
987
        </ul>
988
    </div>
989
                </div>
990
                        </div>
991
        </td>
992
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>
993
    </tr>
994
        <tr class="method-row inherited expandable">
995
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
996
        <td class="sig">
997
        <a id="Ext.Container-getBox"></a>
998
            <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">
999
                        <div class="short">Gets the current box measurements of the component's underlying element.</div>
1000
            <div class="long">
1001
                Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">
1002
        <strong>Parameters:</strong>
1003
        <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>
1004
        <strong>Returns:</strong>
1005
        <ul>
1006
            <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>
1007
        </ul>
1008
    </div>
1009
                </div>
1010
                        </div>
1011
        </td>
1012
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>
1013
    </tr>
1014
        <tr class="method-row alt expandable">
1015
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1016
        <td class="sig">
1017
        <a id="Ext.Container-getComponent"></a>
1018
            <b>getComponent</b>(&nbsp;<code>String/Number id</code>&nbsp;) : Ext.Component            <div class="mdesc">
1019
                        <div class="short">Gets a direct child Component by id, or by index.</div>
1020
            <div class="long">
1021
                Gets a direct child Component by id, or by index.    <div class="mdetail-params">
1022
        <strong>Parameters:</strong>
1023
        <ul><li><code>id</code> : String/Number<div class="sub-desc">or index of child Component to return.</div></li>        </ul>
1024
        <strong>Returns:</strong>
1025
        <ul>
1026
            <li><code>Ext.Component</code></li>
1027
        </ul>
1028
    </div>
1029
                </div>
1030
                        </div>
1031
        </td>
1032
        <td class="msource">Container</td>
1033
    </tr>
1034
        <tr class="method-row inherited expandable">
1035
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1036
        <td class="sig">
1037
        <a id="Ext.Container-getEl"></a>
1038
            <b>getEl</b>() : Ext.Element            <div class="mdesc">
1039
                        <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>
1040
            <div class="long">
1041
                Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">
1042
        <strong>Parameters:</strong>
1043
        <ul><li>None.</li>        </ul>
1044
        <strong>Returns:</strong>
1045
        <ul>
1046
            <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>
1047
        </ul>
1048
    </div>
1049
                </div>
1050
                        </div>
1051
        </td>
1052
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>
1053
    </tr>
1054
        <tr class="method-row inherited alt expandable">
1055
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1056
        <td class="sig">
1057
        <a id="Ext.Container-getId"></a>
1058
            <b>getId</b>() : String            <div class="mdesc">
1059
                        <div class="short">Returns the id of this component.</div>
1060
            <div class="long">
1061
                Returns the id of this component.    <div class="mdetail-params">
1062
        <strong>Parameters:</strong>
1063
        <ul><li>None.</li>        </ul>
1064
        <strong>Returns:</strong>
1065
        <ul>
1066
            <li><code>String</code></li>
1067
        </ul>
1068
    </div>
1069
                </div>
1070
                        </div>
1071
        </td>
1072
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>
1073
    </tr>
1074
        <tr class="method-row inherited expandable">
1075
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1076
        <td class="sig">
1077
        <a id="Ext.Container-getItemId"></a>
1078
            <b>getItemId</b>() : String            <div class="mdesc">
1079
                        <div class="short">Returns the item id of this component.</div>
1080
            <div class="long">
1081
                Returns the item id of this component.    <div class="mdetail-params">
1082
        <strong>Parameters:</strong>
1083
        <ul><li>None.</li>        </ul>
1084
        <strong>Returns:</strong>
1085
        <ul>
1086
            <li><code>String</code></li>
1087
        </ul>
1088
    </div>
1089
                </div>
1090
                        </div>
1091
        </td>
1092
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>
1093
    </tr>
1094
        <tr class="method-row alt expandable">
1095
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1096
        <td class="sig">
1097
        <a id="Ext.Container-getLayout"></a>
1098
            <b>getLayout</b>() : ContainerLayout            <div class="mdesc">
1099
                        <div class="short">Returns the layout currently in use by the container.  If the container does not currently have a layout
1100
set, a defau...</div>
1101
            <div class="long">
1102
                Returns the layout currently in use by the container.  If the container does not currently have a layout
1103
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">
1104
        <strong>Parameters:</strong>
1105
        <ul><li>None.</li>        </ul>
1106
        <strong>Returns:</strong>
1107
        <ul>
1108
            <li><code>ContainerLayout</code><div class="sub-desc">layout The container's layout</div></li>
1109
        </ul>
1110
    </div>
1111
                </div>
1112
                        </div>
1113
        </td>
1114
        <td class="msource">Container</td>
1115
    </tr>
1116
        <tr class="method-row inherited expandable">
1117
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1118
        <td class="sig">
1119
        <a id="Ext.Container-getPosition"></a>
1120
            <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">
1121
                        <div class="short">Gets the current XY position of the component's underlying element.</div>
1122
            <div class="long">
1123
                Gets the current XY position of the component's underlying element.    <div class="mdetail-params">
1124
        <strong>Parameters:</strong>
1125
        <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>
1126
        <strong>Returns:</strong>
1127
        <ul>
1128
            <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>
1129
        </ul>
1130
    </div>
1131
                </div>
1132
                        </div>
1133
        </td>
1134
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>
1135
    </tr>
1136
        <tr class="method-row inherited alt expandable">
1137
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1138
        <td class="sig">
1139
        <a id="Ext.Container-getSize"></a>
1140
            <b>getSize</b>() : Object            <div class="mdesc">
1141
                        <div class="short">Gets the current size of the component's underlying element.</div>
1142
            <div class="long">
1143
                Gets the current size of the component's underlying element.    <div class="mdetail-params">
1144
        <strong>Parameters:</strong>
1145
        <ul><li>None.</li>        </ul>
1146
        <strong>Returns:</strong>
1147
        <ul>
1148
            <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>
1149
        </ul>
1150
    </div>
1151
                </div>
1152
                        </div>
1153
        </td>
1154
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>
1155
    </tr>
1156
        <tr class="method-row inherited expandable">
1157
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1158
        <td class="sig">
1159
        <a id="Ext.Container-getXType"></a>
1160
            <b>getXType</b>() : String            <div class="mdesc">
1161
                        <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
1162
available xtypes, see the Ex...</div>
1163
            <div class="long">
1164
                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
1165
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1166
<pre><code>var t = <b>new</b> Ext.form.TextField();
1167
alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">
1168
        <strong>Parameters:</strong>
1169
        <ul><li>None.</li>        </ul>
1170
        <strong>Returns:</strong>
1171
        <ul>
1172
            <li><code>String</code><div class="sub-desc">The xtype</div></li>
1173
        </ul>
1174
    </div>
1175
                </div>
1176
                        </div>
1177
        </td>
1178
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>
1179
    </tr>
1180
        <tr class="method-row inherited alt expandable">
1181
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1182
        <td class="sig">
1183
        <a id="Ext.Container-getXTypes"></a>
1184
            <b>getXTypes</b>() : String            <div class="mdesc">
1185
                        <div class="short">Returns this component's xtype hierarchy as a slash-delimited string. For a list of all
1186
available xtypes, see the Ext...</div>
1187
            <div class="long">
1188
                Returns this component's xtype hierarchy as a slash-delimited string. For a list of all
1189
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1190
<pre><code>
1191
var t = new Ext.form.TextField();
1192
alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">
1193
        <strong>Parameters:</strong>
1194
        <ul><li>None.</li>        </ul>
1195
        <strong>Returns:</strong>
1196
        <ul>
1197
            <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>
1198
        </ul>
1199
    </div>
1200
                </div>
1201
                        </div>
1202
        </td>
1203
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</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.Container-hasListener"></a>
1209
            <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">
1210
                        <div class="short">Checks to see if this object has any listeners for a specified event</div>
1211
            <div class="long">
1212
                Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">
1213
        <strong>Parameters:</strong>
1214
        <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>
1215
        <strong>Returns:</strong>
1216
        <ul>
1217
            <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>
1218
        </ul>
1219
    </div>
1220
                </div>
1221
                        </div>
1222
        </td>
1223
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</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.Container-hide"></a>
1229
            <b>hide</b>() : Ext.Component            <div class="mdesc">
1230
                        <div class="short">Hide this component.</div>
1231
            <div class="long">
1232
                Hide this component.    <div class="mdetail-params">
1233
        <strong>Parameters:</strong>
1234
        <ul><li>None.</li>        </ul>
1235
        <strong>Returns:</strong>
1236
        <ul>
1237
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1238
        </ul>
1239
    </div>
1240
                </div>
1241
                        </div>
1242
        </td>
1243
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</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.Container-initComponent"></a>
1249
            <b>initComponent</b>() : void            <div class="mdesc">
1250
                        <div class="short">// private internal config</div>
1251
            <div class="long">
1252
                // private internal config    <div class="mdetail-params">
1253
        <strong>Parameters:</strong>
1254
        <ul><li>None.</li>        </ul>
1255
        <strong>Returns:</strong>
1256
        <ul>
1257
            <li><code>void</code></li>
1258
        </ul>
1259
    </div>
1260
                </div>
1261
                        </div>
1262
        </td>
1263
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#initComponent" href="output/Ext.BoxComponent.html#initComponent">BoxComponent</a></td>
1264
    </tr>
1265
        <tr class="method-row alt expandable">
1266
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1267
        <td class="sig">
1268
        <a id="Ext.Container-insert"></a>
1269
            <b>insert</b>(&nbsp;<code>Number index</code>, <code>Ext.Component component</code>&nbsp;) : Ext.Component            <div class="mdesc">
1270
                        <div class="short">Inserts a Component into this Container at a specified index. Fires the
1271
beforeadd event before inserting, then fires ...</div>
1272
            <div class="long">
1273
                Inserts a Component into this Container at a specified index. Fires the
1274
beforeadd event before inserting, then fires the add event after the
1275
Component has been inserted.    <div class="mdetail-params">
1276
        <strong>Parameters:</strong>
1277
        <ul><li><code>index</code> : Number<div class="sub-desc">The index at which the Component will be inserted
1278
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>
1279
Ext uses lazy rendering, and will only render the inserted Component should
1280
it become necessary.<br><br>
1281
A Component config object may be passed in order to avoid the overhead of
1282
constructing a real Component object if lazy rendering might mean that the
1283
inserted Component will not be rendered immediately. To take advantage of
1284
this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config
1285
property to the registered type of the Component wanted.<br><br>
1286
For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>
1287
        <strong>Returns:</strong>
1288
        <ul>
1289
            <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>
1290
        </ul>
1291
    </div>
1292
                </div>
1293
                        </div>
1294
        </td>
1295
        <td class="msource">Container</td>
1296
    </tr>
1297
        <tr class="method-row inherited expandable">
1298
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1299
        <td class="sig">
1300
        <a id="Ext.Container-isVisible"></a>
1301
            <b>isVisible</b>() : void            <div class="mdesc">
1302
                        <div class="short">Returns true if this component is visible.</div>
1303
            <div class="long">
1304
                Returns true if this component is visible.    <div class="mdetail-params">
1305
        <strong>Parameters:</strong>
1306
        <ul><li>None.</li>        </ul>
1307
        <strong>Returns:</strong>
1308
        <ul>
1309
            <li><code>void</code></li>
1310
        </ul>
1311
    </div>
1312
                </div>
1313
                        </div>
1314
        </td>
1315
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>
1316
    </tr>
1317
        <tr class="method-row inherited alt expandable">
1318
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1319
        <td class="sig">
1320
        <a id="Ext.Container-isXType"></a>
1321
            <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">
1322
                        <div class="short">Tests whether or not this component is of a specific xtype. This can test whether this component is descended
1323
from th...</div>
1324
            <div class="long">
1325
                Tests whether or not this component is of a specific xtype. This can test whether this component is descended
1326
from the xtype (default) or whether it is directly of the xtype specified (shallow = true). For a list of all
1327
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1328
<pre><code>var t = <b>new</b> Ext.form.TextField();
1329
<b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
1330
<b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
1331
<b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">
1332
        <strong>Parameters:</strong>
1333
        <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
1334
the default), or true to check whether this component is directly of the specified xtype.</div></li>        </ul>
1335
        <strong>Returns:</strong>
1336
        <ul>
1337
            <li><code>void</code></li>
1338
        </ul>
1339
    </div>
1340
                </div>
1341
                        </div>
1342
        </td>
1343
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>
1344
    </tr>
1345
        <tr class="method-row inherited expandable">
1346
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1347
        <td class="sig">
1348
        <a id="Ext.Container-on"></a>
1349
            <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">
1350
                        <div class="short">Appends an event handler to this element (shorthand for addListener)</div>
1351
            <div class="long">
1352
                Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">
1353
        <strong>Parameters:</strong>
1354
        <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
1355
function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>
1356
        <strong>Returns:</strong>
1357
        <ul>
1358
            <li><code>void</code></li>
1359
        </ul>
1360
    </div>
1361
                </div>
1362
                        </div>
1363
        </td>
1364
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>
1365
    </tr>
1366
        <tr class="method-row inherited alt expandable">
1367
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1368
        <td class="sig">
1369
        <a id="Ext.Container-purgeListeners"></a>
1370
            <b>purgeListeners</b>() : void            <div class="mdesc">
1371
                        <div class="short">Removes all listeners for this object</div>
1372
            <div class="long">
1373
                Removes all listeners for this object    <div class="mdetail-params">
1374
        <strong>Parameters:</strong>
1375
        <ul><li>None.</li>        </ul>
1376
        <strong>Returns:</strong>
1377
        <ul>
1378
            <li><code>void</code></li>
1379
        </ul>
1380
    </div>
1381
                </div>
1382
                        </div>
1383
        </td>
1384
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>
1385
    </tr>
1386
        <tr class="method-row expandable">
1387
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1388
        <td class="sig">
1389
        <a id="Ext.Container-remove"></a>
1390
            <b>remove</b>(&nbsp;<code>Component/String component</code>, <span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : void            <div class="mdesc">
1391
                        <div class="short">Removes a component from this container.  Fires the beforeremove event before removing, then fires
1392
the remove event a...</div>
1393
            <div class="long">
1394
                Removes a component from this container.  Fires the beforeremove event before removing, then fires
1395
the remove event after the component has been removed.    <div class="mdetail-params">
1396
        <strong>Parameters:</strong>
1397
        <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>
1398
        <strong>Returns:</strong>
1399
        <ul>
1400
            <li><code>void</code></li>
1401
        </ul>
1402
    </div>
1403
                </div>
1404
                        </div>
1405
        </td>
1406
        <td class="msource">Container</td>
1407
    </tr>
1408
        <tr class="method-row inherited alt expandable">
1409
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1410
        <td class="sig">
1411
        <a id="Ext.Container-removeClass"></a>
1412
            <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
1413
                        <div class="short">Removes a CSS class from the component's underlying element.</div>
1414
            <div class="long">
1415
                Removes a CSS class from the component's underlying element.    <div class="mdetail-params">
1416
        <strong>Parameters:</strong>
1417
        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>
1418
        <strong>Returns:</strong>
1419
        <ul>
1420
            <li><code>void</code></li>
1421
        </ul>
1422
    </div>
1423
                </div>
1424
                        </div>
1425
        </td>
1426
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>
1427
    </tr>
1428
        <tr class="method-row inherited expandable">
1429
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1430
        <td class="sig">
1431
        <a id="Ext.Container-removeListener"></a>
1432
            <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">
1433
                        <div class="short">Removes a listener</div>
1434
            <div class="long">
1435
                Removes a listener    <div class="mdetail-params">
1436
        <strong>Parameters:</strong>
1437
        <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>
1438
        <strong>Returns:</strong>
1439
        <ul>
1440
            <li><code>void</code></li>
1441
        </ul>
1442
    </div>
1443
                </div>
1444
                        </div>
1445
        </td>
1446
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>
1447
    </tr>
1448
        <tr class="method-row inherited alt expandable">
1449
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1450
        <td class="sig">
1451
        <a id="Ext.Container-render"></a>
1452
            <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">
1453
                        <div class="short">If this is a lazy rendering component, render it to its container element.</div>
1454
            <div class="long">
1455
                If this is a lazy rendering component, render it to its container element.    <div class="mdetail-params">
1456
        <strong>Parameters:</strong>
1457
        <ul><li><code>container</code> : Mixed<div class="sub-desc">(optional) The element this component should be rendered into. If it is being
1458
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>
1459
which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>
1460
        <strong>Returns:</strong>
1461
        <ul>
1462
            <li><code>void</code></li>
1463
        </ul>
1464
    </div>
1465
                </div>
1466
                        </div>
1467
        </td>
1468
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>
1469
    </tr>
1470
        <tr class="method-row inherited expandable">
1471
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1472
        <td class="sig">
1473
        <a id="Ext.Container-resumeEvents"></a>
1474
            <b>resumeEvents</b>() : void            <div class="mdesc">
1475
                        <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>
1476
            <div class="long">
1477
                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">
1478
        <strong>Parameters:</strong>
1479
        <ul><li>None.</li>        </ul>
1480
        <strong>Returns:</strong>
1481
        <ul>
1482
            <li><code>void</code></li>
1483
        </ul>
1484
    </div>
1485
                </div>
1486
                        </div>
1487
        </td>
1488
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>
1489
    </tr>
1490
        <tr class="method-row inherited alt expandable">
1491
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1492
        <td class="sig">
1493
        <a id="Ext.Container-setDisabled"></a>
1494
            <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">
1495
                        <div class="short">Convenience function for setting disabled/enabled by boolean.</div>
1496
            <div class="long">
1497
                Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">
1498
        <strong>Parameters:</strong>
1499
        <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></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.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</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.Container-setHeight"></a>
1514
            <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1515
                        <div class="short">Sets the height of the component.  This method fires the resize event.</div>
1516
            <div class="long">
1517
                Sets the height of the component.  This method fires the resize event.    <div class="mdetail-params">
1518
        <strong>Parameters:</strong>
1519
        <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>
1520
        <strong>Returns:</strong>
1521
        <ul>
1522
            <li><code>Ext.BoxComponent</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.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>
1529
    </tr>
1530
        <tr class="method-row inherited alt expandable">
1531
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1532
        <td class="sig">
1533
        <a id="Ext.Container-setPagePosition"></a>
1534
            <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1535
                        <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
1536
This method fires the ...</div>
1537
            <div class="long">
1538
                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>.
1539
This method fires the move event.    <div class="mdetail-params">
1540
        <strong>Parameters:</strong>
1541
        <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>
1542
        <strong>Returns:</strong>
1543
        <ul>
1544
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1545
        </ul>
1546
    </div>
1547
                </div>
1548
                        </div>
1549
        </td>
1550
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>
1551
    </tr>
1552
        <tr class="method-row inherited expandable">
1553
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1554
        <td class="sig">
1555
        <a id="Ext.Container-setPosition"></a>
1556
            <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1557
                        <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
1558
This method fires ...</div>
1559
            <div class="long">
1560
                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>.
1561
This method fires the move event.    <div class="mdetail-params">
1562
        <strong>Parameters:</strong>
1563
        <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>
1564
        <strong>Returns:</strong>
1565
        <ul>
1566
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1567
        </ul>
1568
    </div>
1569
                </div>
1570
                        </div>
1571
        </td>
1572
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>
1573
    </tr>
1574
        <tr class="method-row inherited alt expandable">
1575
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1576
        <td class="sig">
1577
        <a id="Ext.Container-setSize"></a>
1578
            <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1579
                        <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
1580
either width...</div>
1581
            <div class="long">
1582
                Sets the width and height of the component.  This method fires the resize event.  This method can accept
1583
either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">
1584
        <strong>Parameters:</strong>
1585
        <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>
1586
        <strong>Returns:</strong>
1587
        <ul>
1588
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1589
        </ul>
1590
    </div>
1591
                </div>
1592
                        </div>
1593
        </td>
1594
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>
1595
    </tr>
1596
        <tr class="method-row inherited expandable">
1597
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1598
        <td class="sig">
1599
        <a id="Ext.Container-setVisible"></a>
1600
            <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">
1601
                        <div class="short">Convenience function to hide or show this component by boolean.</div>
1602
            <div class="long">
1603
                Convenience function to hide or show this component by boolean.    <div class="mdetail-params">
1604
        <strong>Parameters:</strong>
1605
        <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>
1606
        <strong>Returns:</strong>
1607
        <ul>
1608
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1609
        </ul>
1610
    </div>
1611
                </div>
1612
                        </div>
1613
        </td>
1614
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>
1615
    </tr>
1616
        <tr class="method-row inherited alt expandable">
1617
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1618
        <td class="sig">
1619
        <a id="Ext.Container-setWidth"></a>
1620
            <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1621
                        <div class="short">Sets the width of the component.  This method fires the resize event.</div>
1622
            <div class="long">
1623
                Sets the width of the component.  This method fires the resize event.    <div class="mdetail-params">
1624
        <strong>Parameters:</strong>
1625
        <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>
1626
        <strong>Returns:</strong>
1627
        <ul>
1628
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1629
        </ul>
1630
    </div>
1631
                </div>
1632
                        </div>
1633
        </td>
1634
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>
1635
    </tr>
1636
        <tr class="method-row inherited expandable">
1637
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1638
        <td class="sig">
1639
        <a id="Ext.Container-show"></a>
1640
            <b>show</b>() : Ext.Component            <div class="mdesc">
1641
                        <div class="short">Show this component.</div>
1642
            <div class="long">
1643
                Show this component.    <div class="mdetail-params">
1644
        <strong>Parameters:</strong>
1645
        <ul><li>None.</li>        </ul>
1646
        <strong>Returns:</strong>
1647
        <ul>
1648
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1649
        </ul>
1650
    </div>
1651
                </div>
1652
                        </div>
1653
        </td>
1654
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>
1655
    </tr>
1656
        <tr class="method-row inherited alt expandable">
1657
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1658
        <td class="sig">
1659
        <a id="Ext.Container-suspendEvents"></a>
1660
            <b>suspendEvents</b>() : void            <div class="mdesc">
1661
                        <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>
1662
            <div class="long">
1663
                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">
1664
        <strong>Parameters:</strong>
1665
        <ul><li>None.</li>        </ul>
1666
        <strong>Returns:</strong>
1667
        <ul>
1668
            <li><code>void</code></li>
1669
        </ul>
1670
    </div>
1671
                </div>
1672
                        </div>
1673
        </td>
1674
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>
1675
    </tr>
1676
        <tr class="method-row inherited expandable">
1677
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1678
        <td class="sig">
1679
        <a id="Ext.Container-syncSize"></a>
1680
            <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">
1681
                        <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>
1682
            <div class="long">
1683
                Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">
1684
        <strong>Parameters:</strong>
1685
        <ul><li>None.</li>        </ul>
1686
        <strong>Returns:</strong>
1687
        <ul>
1688
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1689
        </ul>
1690
    </div>
1691
                </div>
1692
                        </div>
1693
        </td>
1694
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>
1695
    </tr>
1696
        <tr class="method-row inherited alt expandable">
1697
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1698
        <td class="sig">
1699
        <a id="Ext.Container-un"></a>
1700
            <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">
1701
                        <div class="short">Removes a listener (shorthand for removeListener)</div>
1702
            <div class="long">
1703
                Removes a listener (shorthand for removeListener)    <div class="mdetail-params">
1704
        <strong>Parameters:</strong>
1705
        <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>
1706
        <strong>Returns:</strong>
1707
        <ul>
1708
            <li><code>void</code></li>
1709
        </ul>
1710
    </div>
1711
                </div>
1712
                        </div>
1713
        </td>
1714
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>
1715
    </tr>
1716
        <tr class="method-row inherited expandable">
1717
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1718
        <td class="sig">
1719
        <a id="Ext.Container-updateBox"></a>
1720
            <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1721
                        <div class="short">Sets the current box measurements of the component's underlying element.</div>
1722
            <div class="long">
1723
                Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">
1724
        <strong>Parameters:</strong>
1725
        <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>
1726
        <strong>Returns:</strong>
1727
        <ul>
1728
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1729
        </ul>
1730
    </div>
1731
                </div>
1732
                        </div>
1733
        </td>
1734
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>
1735
    </tr>
1736
            </table>
1737
                <a id="Ext.Container-events"></a>
1738
        <h2>Public Events</h2>
1739
                <table cellspacing="0" class="member-table">
1740
            <tr>
1741
                <th class="sig-header" colspan="2">Event</th>
1742
                <th class="msource-header">Defined By</th>
1743
            </tr>
1744
                <tr class="event-row expandable">
1745
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1746
        <td class="sig">
1747
        <a id="Ext.Container-add"></a>
1748
            <b>add</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">
1749
                        <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>
1750
            <div class="long">
1751
                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">
1752
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1753
        <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>
1754
    </div>
1755
                </div>
1756
                        </div>
1757
        </td>
1758
        <td class="msource">Container</td>
1759
    </tr>
1760
        <tr class="event-row alt expandable">
1761
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1762
        <td class="sig">
1763
        <a id="Ext.Container-afterlayout"></a>
1764
            <b>afterlayout</b> : (&nbsp;<code>Ext.Container this</code>, <code>ContainerLayout layout</code>&nbsp;)            <div class="mdesc">
1765
                        <div class="short">Fires when the components in this container are arranged by the associated layout manager.</div>
1766
            <div class="long">
1767
                Fires when the components in this container are arranged by the associated layout manager.    <div class="mdetail-params">
1768
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1769
        <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>
1770
    </div>
1771
                </div>
1772
                        </div>
1773
        </td>
1774
        <td class="msource">Container</td>
1775
    </tr>
1776
        <tr class="event-row expandable">
1777
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1778
        <td class="sig">
1779
        <a id="Ext.Container-beforeadd"></a>
1780
            <b>beforeadd</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">
1781
                        <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.
1782
A handler can return false to cancel the add.</div>
1783
            <div class="long">
1784
                Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
1785
A handler can return false to cancel the add.    <div class="mdetail-params">
1786
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1787
        <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>
1788
    </div>
1789
                </div>
1790
                        </div>
1791
        </td>
1792
        <td class="msource">Container</td>
1793
    </tr>
1794
        <tr class="event-row inherited alt expandable">
1795
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1796
        <td class="sig">
1797
        <a id="Ext.Container-beforedestroy"></a>
1798
            <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1799
                        <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>
1800
            <div class="long">
1801
                Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">
1802
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1803
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1804
    </div>
1805
                </div>
1806
                        </div>
1807
        </td>
1808
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>
1809
    </tr>
1810
        <tr class="event-row inherited expandable">
1811
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1812
        <td class="sig">
1813
        <a id="Ext.Container-beforehide"></a>
1814
            <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1815
                        <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>
1816
            <div class="long">
1817
                Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">
1818
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1819
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1820
    </div>
1821
                </div>
1822
                        </div>
1823
        </td>
1824
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>
1825
    </tr>
1826
        <tr class="event-row alt expandable">
1827
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1828
        <td class="sig">
1829
        <a id="Ext.Container-beforeremove"></a>
1830
            <b>beforeremove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">
1831
                        <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
1832
false to cancel the remove.</div>
1833
            <div class="long">
1834
                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
1835
false to cancel the remove.    <div class="mdetail-params">
1836
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1837
        <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>
1838
    </div>
1839
                </div>
1840
                        </div>
1841
        </td>
1842
        <td class="msource">Container</td>
1843
    </tr>
1844
        <tr class="event-row inherited expandable">
1845
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1846
        <td class="sig">
1847
        <a id="Ext.Container-beforerender"></a>
1848
            <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1849
                        <div class="short">Fires before the component is rendered. Return false to stop the render.</div>
1850
            <div class="long">
1851
                Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">
1852
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1853
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1854
    </div>
1855
                </div>
1856
                        </div>
1857
        </td>
1858
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>
1859
    </tr>
1860
        <tr class="event-row inherited alt expandable">
1861
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1862
        <td class="sig">
1863
        <a id="Ext.Container-beforeshow"></a>
1864
            <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1865
                        <div class="short">Fires before the component is shown. Return false to stop the show.</div>
1866
            <div class="long">
1867
                Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">
1868
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1869
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1870
    </div>
1871
                </div>
1872
                        </div>
1873
        </td>
1874
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>
1875
    </tr>
1876
        <tr class="event-row inherited expandable">
1877
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1878
        <td class="sig">
1879
        <a id="Ext.Container-beforestaterestore"></a>
1880
            <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1881
                        <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>
1882
            <div class="long">
1883
                Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">
1884
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1885
        <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>
1886
    </div>
1887
                </div>
1888
                        </div>
1889
        </td>
1890
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>
1891
    </tr>
1892
        <tr class="event-row inherited alt expandable">
1893
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1894
        <td class="sig">
1895
        <a id="Ext.Container-beforestatesave"></a>
1896
            <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1897
                        <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>
1898
            <div class="long">
1899
                Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">
1900
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1901
        <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>
1902
    </div>
1903
                </div>
1904
                        </div>
1905
        </td>
1906
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>
1907
    </tr>
1908
        <tr class="event-row inherited expandable">
1909
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1910
        <td class="sig">
1911
        <a id="Ext.Container-destroy"></a>
1912
            <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1913
                        <div class="short">Fires after the component is destroyed.</div>
1914
            <div class="long">
1915
                Fires after the component is destroyed.    <div class="mdetail-params">
1916
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1917
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1918
    </div>
1919
                </div>
1920
                        </div>
1921
        </td>
1922
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>
1923
    </tr>
1924
        <tr class="event-row inherited alt expandable">
1925
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1926
        <td class="sig">
1927
        <a id="Ext.Container-disable"></a>
1928
            <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1929
                        <div class="short">Fires after the component is disabled.</div>
1930
            <div class="long">
1931
                Fires after the component is disabled.    <div class="mdetail-params">
1932
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1933
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1934
    </div>
1935
                </div>
1936
                        </div>
1937
        </td>
1938
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>
1939
    </tr>
1940
        <tr class="event-row inherited expandable">
1941
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1942
        <td class="sig">
1943
        <a id="Ext.Container-enable"></a>
1944
            <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1945
                        <div class="short">Fires after the component is enabled.</div>
1946
            <div class="long">
1947
                Fires after the component is enabled.    <div class="mdetail-params">
1948
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1949
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1950
    </div>
1951
                </div>
1952
                        </div>
1953
        </td>
1954
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>
1955
    </tr>
1956
        <tr class="event-row inherited alt expandable">
1957
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1958
        <td class="sig">
1959
        <a id="Ext.Container-hide"></a>
1960
            <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1961
                        <div class="short">Fires after the component is hidden.</div>
1962
            <div class="long">
1963
                Fires after the component is hidden.    <div class="mdetail-params">
1964
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1965
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1966
    </div>
1967
                </div>
1968
                        </div>
1969
        </td>
1970
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>
1971
    </tr>
1972
        <tr class="event-row inherited expandable">
1973
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1974
        <td class="sig">
1975
        <a id="Ext.Container-move"></a>
1976
            <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">
1977
                        <div class="short">Fires after the component is moved.</div>
1978
            <div class="long">
1979
                Fires after the component is moved.    <div class="mdetail-params">
1980
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1981
        <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>
1982
    </div>
1983
                </div>
1984
                        </div>
1985
        </td>
1986
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>
1987
    </tr>
1988
        <tr class="event-row alt expandable">
1989
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1990
        <td class="sig">
1991
        <a id="Ext.Container-remove"></a>
1992
            <b>remove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">
1993
                        <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>
1994
            <div class="long">
1995
                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">
1996
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1997
        <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>
1998
    </div>
1999
                </div>
2000
                        </div>
2001
        </td>
2002
        <td class="msource">Container</td>
2003
    </tr>
2004
        <tr class="event-row inherited expandable">
2005
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2006
        <td class="sig">
2007
        <a id="Ext.Container-render"></a>
2008
            <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2009
                        <div class="short">Fires after the component is rendered.</div>
2010
            <div class="long">
2011
                Fires after the component is rendered.    <div class="mdetail-params">
2012
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2013
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2014
    </div>
2015
                </div>
2016
                        </div>
2017
        </td>
2018
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>
2019
    </tr>
2020
        <tr class="event-row inherited alt expandable">
2021
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2022
        <td class="sig">
2023
        <a id="Ext.Container-resize"></a>
2024
            <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">
2025
                        <div class="short">Fires after the component is resized.</div>
2026
            <div class="long">
2027
                Fires after the component is resized.    <div class="mdetail-params">
2028
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2029
        <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>
2030
    </div>
2031
                </div>
2032
                        </div>
2033
        </td>
2034
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>
2035
    </tr>
2036
        <tr class="event-row inherited expandable">
2037
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2038
        <td class="sig">
2039
        <a id="Ext.Container-show"></a>
2040
            <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2041
                        <div class="short">Fires after the component is shown.</div>
2042
            <div class="long">
2043
                Fires after the component is shown.    <div class="mdetail-params">
2044
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2045
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2046
    </div>
2047
                </div>
2048
                        </div>
2049
        </td>
2050
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>
2051
    </tr>
2052
        <tr class="event-row inherited alt expandable">
2053
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2054
        <td class="sig">
2055
        <a id="Ext.Container-staterestore"></a>
2056
            <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2057
                        <div class="short">Fires after the state of the component is restored.</div>
2058
            <div class="long">
2059
                Fires after the state of the component is restored.    <div class="mdetail-params">
2060
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2061
        <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>
2062
    </div>
2063
                </div>
2064
                        </div>
2065
        </td>
2066
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>
2067
    </tr>
2068
        <tr class="event-row inherited expandable">
2069
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2070
        <td class="sig">
2071
        <a id="Ext.Container-statesave"></a>
2072
            <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2073
                        <div class="short">Fires after the state of the component is saved to the configured state provider.</div>
2074
            <div class="long">
2075
                Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">
2076
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2077
        <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>
2078
    </div>
2079
                </div>
2080
                        </div>
2081
        </td>
2082
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>
2083
    </tr>
2084
            </table>
2085
 
2086
        </div>