commit extjs-2.2.1
[extjs.git] / docs / output / Ext.Container.html
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="../src/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             *
24 <p>Base class for any <a ext:cls="Ext.BoxComponent" href="output/Ext.BoxComponent.html">Ext.BoxComponent</a> that can contain other components. The most commonly
25 used Container classes are <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Ext.Panel</a>, <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a> and <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">Ext.TabPanel</a>, but you can
26 create a lightweight Container to encapsulate an HTML element that is created to your
27 specifications at render time by using the <a ext:cls="Ext.Component" ext:member="autoEl" href="output/Ext.Component.html#autoEl">autoEl</a> config option
28 which takes the form of a <a ext:cls="Ext.DomHelper" href="output/Ext.DomHelper.html">DomHelper</a> specification. If you do not need
29 the capabilities offered by the above mentioned classes, for instance embedded
30 <a ext:cls="Ext.layout.ColumnLayout" href="output/Ext.layout.ColumnLayout.html">column</a> layouts inside FormPanels, then this is a useful technique.</p>
31 <p>The code below illustrates both how to explicitly <i>create</i> a Container, and how to implicitly
32 create one using the <b><tt>'container'</tt></b> xtype:<pre><code>var embeddedColumns = <b>new</b> Ext.Container({
33     autoEl: {},
34     layout: <em>'column'</em>,
35     defaults: {
36         xtype: <em>'container'</em>,
37         autoEl: {},
38         layout: <em>'form'</em>,
39         columnWidth: 0.5,
40         style: {
41             padding: <em>'10px'</em>
42         }
43     },
44     items: [{
45         items: {
46             xtype: <em>'datefield'</em>,
47             name: <em>'startDate'</em>,
48             fieldLabel: <em>'Start date'</em>
49         }
50     }, {
51         items: {
52             xtype: <em>'datefield'</em>,
53             name: <em>'endDate'</em>,
54             fieldLabel: <em>'End date'</em>
55         }
56     }]
57 });</code></pre></p>
58 Containers handle the basic behavior of containing items, namely adding, inserting and removing them.
59 The specific layout logic required to visually render contained items is delegated to any one of the different
60 <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> classes available.</p>
61 <p>When either specifying child <a ext:cls="Ext.Container" ext:member="items" href="output/Ext.Container.html#items">items</a> of a Container, or dynamically adding components to a Container,
62 remember to consider how you wish the Container to arrange those child elements, and whether those child elements
63 need to be sized using one of Ext's built-in layout schemes.</p>
64 <p>By default, Containers use the <a ext:cls="Ext.layout.ContainerLayout" href="output/Ext.layout.ContainerLayout.html">ContainerLayout</a> scheme. This simply renders
65 child components, appending them one after the other inside the Container, and does not apply any sizing at all.
66 This is a common source of confusion when widgets like GridPanels or TreePanels are added to Containers for
67 which no layout has been specified. If a Container is left to use the ContainerLayout scheme, none of its child
68 components will be resized, or changed in any way when the Container is resized.</p>
69 <p>A very common example of this is where a developer will attempt to add a GridPanel to a TabPanel by wrapping
70 the GridPanel <i>inside</i> a wrapping Panel and add that wrapping Panel to the TabPanel. This misses the point that
71 Ext's inheritance means that a GridPanel <b>is</b> a Component which can be added unadorned into a Container. If
72 that wrapping Panel has no layout configuration, then the GridPanel will not be sized as expected.<p>
73 <p>Below is an example of adding a newly created GridPanel to a TabPanel. A TabPanel uses <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>
74 as its layout manager which means all its child items are sized to fit exactly into its client area. The following
75 code requires prior knowledge of how to create GridPanels. See <a ext:cls="Ext.grid.GridPanel" href="output/Ext.grid.GridPanel.html">Ext.grid.GridPanel</a>, <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a>
76 and <a ext:cls="Ext.data.JsonReader" href="output/Ext.data.JsonReader.html">Ext.data.JsonReader</a> as well as the grid examples in the Ext installation's <tt>examples/grid</tt>
77 directory.</p><pre><code><i>//  Create the GridPanel.</i>
78 myGrid = <b>new</b> Ext.grid.GridPanel({
79     store: myStore,
80     columns: myColumnModel,
81     title: <em>'Results'</em>,
82 });
83
84 myTabPanel.add(myGrid);
85 myTabPanel.setActiveTab(myGrid);</code></pre>        </div>
86         
87         <div class="hr"></div>
88                 <a id="Ext.Container-configs"></a>
89         <h2>Config Options</h2>
90         <table cellspacing="0" class="member-table">
91             <tr>
92                 <th class="sig-header" colspan="2">Config Options</th>
93                 <th class="msource-header">Defined By</th>
94             </tr>
95                 <tr class="config-row expandable">\r
96         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
97         <td class="sig">\r
98         <a id="Ext.Container-activeItem"></a>\r
99             <b>activeItem</b> : String/Number            <div class="mdesc">\r
100                         <div class="short">A string component id or the numeric index of the component that should be initially activated within the container's...</div>\r
101             <div class="long">\r
102                 A string component id or the numeric index of the component that should be initially activated within the container's layout on render. For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first item in the container's collection). activeItem only applies to layout styles that can display items one at a time (like <a ext:cls="Ext.layout.Accordion" href="output/Ext.layout.Accordion.html">Ext.layout.Accordion</a>, <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a> and <a ext:cls="Ext.layout.FitLayout" href="output/Ext.layout.FitLayout.html">Ext.layout.FitLayout</a>). Related to <a ext:cls="Ext.layout.ContainerLayout" ext:member="activeItem" href="output/Ext.layout.ContainerLayout.html#activeItem">Ext.layout.ContainerLayout.activeItem</a>.            </div>\r
103                         </div>\r
104         </td>\r
105         <td class="msource">Container</td>\r
106     </tr>\r
107         <tr class="config-row inherited alt">\r
108         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
109         <td class="sig">\r
110         <a id="Ext.Container-allowDomMove"></a>\r
111             <b>allowDomMove</b> : Boolean            <div class="mdesc">\r
112                             Whether the component can move the Dom node when rendering (defaults to true).                        </div>\r
113         </td>\r
114         <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>\r
115     </tr>\r
116         <tr class="config-row inherited expandable">\r
117         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
118         <td class="sig">\r
119         <a id="Ext.Container-applyTo"></a>\r
120             <b>applyTo</b> : Mixed            <div class="mdesc">\r
121                         <div class="short">The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document ...</div>\r
122             <div class="long">\r
123                 The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document that specifies some structural markup for this component. When applyTo is used, constituent parts of the component can also be specified by id or CSS class name within the main element, and the component being created may attempt to create its subcomponents from that markup if applicable. Using this config, a call to render() is not required. If applyTo is specified, any value passed for <a ext:cls="Ext.Component" ext:member="renderTo" href="output/Ext.Component.html#renderTo">renderTo</a> will be ignored and the target element's parent node will automatically be used as the component's container.            </div>\r
124                         </div>\r
125         </td>\r
126         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>\r
127     </tr>\r
128         <tr class="config-row alt expandable">\r
129         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
130         <td class="sig">\r
131         <a id="Ext.Container-autoDestroy"></a>\r
132             <b>autoDestroy</b> : Boolean            <div class="mdesc">\r
133                         <div class="short">If true the container will automatically destroy any contained component that is removed from it, else destruction mu...</div>\r
134             <div class="long">\r
135                 If true the container will automatically destroy any contained component that is removed from it, else destruction must be handled manually (defaults to true).            </div>\r
136                         </div>\r
137         </td>\r
138         <td class="msource">Container</td>\r
139     </tr>\r
140         <tr class="config-row inherited expandable">\r
141         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
142         <td class="sig">\r
143         <a id="Ext.Container-autoEl"></a>\r
144             <b>autoEl</b> : String/Object            <div class="mdesc">\r
145                         <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>\r
146             <div class="long">\r
147                 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>}
148 {xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>\r
149                         </div>\r
150         </td>\r
151         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>\r
152     </tr>\r
153         <tr class="config-row inherited alt expandable">\r
154         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
155         <td class="sig">\r
156         <a id="Ext.Container-autoHeight"></a>\r
157             <b>autoHeight</b> : Boolean            <div class="mdesc">\r
158                         <div class="short">True to use height:'auto', false to use fixed height (defaults to false). Note: Although many components inherit this...</div>\r
159             <div class="long">\r
160                 True to use height:'auto', false to use fixed height (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a height of 'auto'. Setting autoHeight:true means that the browser will manage height based on the element's contents, and that Ext will not manage it at all.            </div>\r
161                         </div>\r
162         </td>\r
163         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>\r
164     </tr>\r
165         <tr class="config-row inherited expandable">\r
166         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
167         <td class="sig">\r
168         <a id="Ext.Container-autoShow"></a>\r
169             <b>autoShow</b> : Boolean            <div class="mdesc">\r
170                         <div class="short">True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render...</div>\r
171             <div class="long">\r
172                 True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render (defaults to false).            </div>\r
173                         </div>\r
174         </td>\r
175         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>\r
176     </tr>\r
177         <tr class="config-row inherited alt expandable">\r
178         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
179         <td class="sig">\r
180         <a id="Ext.Container-autoWidth"></a>\r
181             <b>autoWidth</b> : Boolean            <div class="mdesc">\r
182                         <div class="short">True to use width:'auto', false to use fixed width (defaults to false). Note: Although many components inherit this c...</div>\r
183             <div class="long">\r
184                 True to use width:'auto', false to use fixed width (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a width of 'auto'. Setting autoWidth:true means that the browser will manage width based on the element's contents, and that Ext will not manage it at all.            </div>\r
185                         </div>\r
186         </td>\r
187         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>\r
188     </tr>\r
189         <tr class="config-row expandable">\r
190         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
191         <td class="sig">\r
192         <a id="Ext.Container-bufferResize"></a>\r
193             <b>bufferResize</b> : Boolean/Number            <div class="mdesc">\r
194                         <div class="short">When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer t...</div>\r
195             <div class="long">\r
196                 When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer the frequency it calculates and does a re-layout of components. This is useful for heavy containers or containers with a large quantity of sub-components for which frequent layout calls would be expensive.            </div>\r
197                         </div>\r
198         </td>\r
199         <td class="msource">Container</td>\r
200     </tr>\r
201         <tr class="config-row inherited alt expandable">\r
202         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
203         <td class="sig">\r
204         <a id="Ext.Container-clearCls"></a>\r
205             <b>clearCls</b> : String            <div class="mdesc">\r
206                         <div class="short">The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). This config is only used when this Co...</div>\r
207             <div class="long">\r
208                 The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p>            </div>\r
209                         </div>\r
210         </td>\r
211         <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>\r
212     </tr>\r
213         <tr class="config-row inherited expandable">\r
214         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
215         <td class="sig">\r
216         <a id="Ext.Container-cls"></a>\r
217             <b>cls</b> : String            <div class="mdesc">\r
218                         <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>\r
219             <div class="long">\r
220                 An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>\r
221                         </div>\r
222         </td>\r
223         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>\r
224     </tr>\r
225         <tr class="config-row inherited alt expandable">\r
226         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
227         <td class="sig">\r
228         <a id="Ext.Container-ctCls"></a>\r
229             <b>ctCls</b> : String            <div class="mdesc">\r
230                         <div class="short">An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for...</div>\r
231             <div class="long">\r
232                 An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.            </div>\r
233                         </div>\r
234         </td>\r
235         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>\r
236     </tr>\r
237         <tr class="config-row expandable">\r
238         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
239         <td class="sig">\r
240         <a id="Ext.Container-defaultType"></a>\r
241             <b>defaultType</b> : String            <div class="mdesc">\r
242                         <div class="short">The default xtype of child Components to create in this Container when a child item is specified as a raw configurati...</div>\r
243             <div class="long">\r
244                 <p>The default <a ext:cls="Ext.Component" href="output/Ext.Component.html">xtype</a> of child Components to create in this Container when a child item is specified as a raw configuration object, rather than as an instantiated Component.</p> <p>Defaults to 'panel'.</p>            </div>\r
245                         </div>\r
246         </td>\r
247         <td class="msource">Container</td>\r
248     </tr>\r
249         <tr class="config-row alt expandable">\r
250         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
251         <td class="sig">\r
252         <a id="Ext.Container-defaults"></a>\r
253             <b>defaults</b> : Object            <div class="mdesc">\r
254                         <div class="short">A config object that will be applied to all components added to this container either via the items config or via the...</div>\r
255             <div class="long">\r
256                 A config object that will be applied to all components added to this container either via the <a ext:cls="Ext.Container" ext:member="items" href="output/Ext.Container.html#items">items</a> config or via the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> or <a ext:cls="Ext.Container" ext:member="insert" href="output/Ext.Container.html#insert">insert</a> methods. The defaults config can contain any number of name/value property pairs to be added to each item, and should be valid for the types of items being added to the container. For example, to automatically apply padding to the body of each of a set of contained <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Ext.Panel</a> items, you could pass: defaults: {bodyStyle:'padding:15px'}.            </div>\r
257                         </div>\r
258         </td>\r
259         <td class="msource">Container</td>\r
260     </tr>\r
261         <tr class="config-row inherited">\r
262         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
263         <td class="sig">\r
264         <a id="Ext.Container-disabled"></a>\r
265             <b>disabled</b> : Boolean            <div class="mdesc">\r
266                             Render this component disabled (default is false).                        </div>\r
267         </td>\r
268         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
269     </tr>\r
270         <tr class="config-row inherited alt">\r
271         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
272         <td class="sig">\r
273         <a id="Ext.Container-disabledClass"></a>\r
274             <b>disabledClass</b> : String            <div class="mdesc">\r
275                             CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>\r
276         </td>\r
277         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>\r
278     </tr>\r
279         <tr class="config-row inherited expandable">\r
280         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
281         <td class="sig">\r
282         <a id="Ext.Container-fieldLabel"></a>\r
283             <b>fieldLabel</b> : String            <div class="mdesc">\r
284                         <div class="short">The label text to display next to this Component (defaults to '') This config is only used when this Component is ren...</div>\r
285             <div class="long">\r
286                 The label text to display next to this Component (defaults to '') <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
287     height: 100,
288     renderTo: Ext.getBody(),
289     items: [{
290         xtype: <em>'textfield'</em>,
291         fieldLabel: <em>'Name'</em>
292     }]
293 });</code></pre>            </div>\r
294                         </div>\r
295         </td>\r
296         <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>\r
297     </tr>\r
298         <tr class="config-row inherited alt">\r
299         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
300         <td class="sig">\r
301         <a id="Ext.Container-height"></a>\r
302             <b>height</b> : Number            <div class="mdesc">\r
303                             The height of this component in pixels (defaults to auto).                        </div>\r
304         </td>\r
305         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>\r
306     </tr>\r
307         <tr class="config-row inherited">\r
308         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
309         <td class="sig">\r
310         <a id="Ext.Container-hidden"></a>\r
311             <b>hidden</b> : Boolean            <div class="mdesc">\r
312                             Render this component hidden (default is false).                        </div>\r
313         </td>\r
314         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
315     </tr>\r
316         <tr class="config-row alt expandable">\r
317         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
318         <td class="sig">\r
319         <a id="Ext.Container-hideBorders"></a>\r
320             <b>hideBorders</b> : Boolean            <div class="mdesc">\r
321                         <div class="short">True to hide the borders of each contained component, false to defer to the component's existing border settings (def...</div>\r
322             <div class="long">\r
323                 True to hide the borders of each contained component, false to defer to the component's existing border settings (defaults to false).            </div>\r
324                         </div>\r
325         </td>\r
326         <td class="msource">Container</td>\r
327     </tr>\r
328         <tr class="config-row inherited expandable">\r
329         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
330         <td class="sig">\r
331         <a id="Ext.Container-hideLabel"></a>\r
332             <b>hideLabel</b> : Boolean            <div class="mdesc">\r
333                         <div class="short">True to completely hide the label element (defaults to false). By default, even if you do not specify a fieldLabel th...</div>\r
334             <div class="long">\r
335                 True to completely hide the label element (defaults to false). By default, even if you do not specify a <a ext:cls="fieldLabel" href="output/fieldLabel.html">fieldLabel</a> the space will still be reserved so that the field will line up with other fields that do have labels. Setting this to true will cause the field to not reserve that space. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
336     height: 100,
337     renderTo: Ext.getBody(),
338     items: [{
339         xtype: <em>'textfield'</em>
340         hideLabel: true
341     }]
342 });</code></pre>            </div>\r
343                         </div>\r
344         </td>\r
345         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>\r
346     </tr>\r
347         <tr class="config-row inherited alt expandable">\r
348         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
349         <td class="sig">\r
350         <a id="Ext.Container-hideMode"></a>\r
351             <b>hideMode</b> : String            <div class="mdesc">\r
352                         <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>\r
353             <div class="long">\r
354                 <p>How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".</p> <p>For Containers which may be hidden and shown as part of a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">card layout</a> Container such as a <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">TabPanel</a>, it is recommended that hideMode is configured as "offsets". This ensures that hidden Components still have height and width so that layout managers can perform measurements when calculating layouts.</p>            </div>\r
355                         </div>\r
356         </td>\r
357         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>\r
358     </tr>\r
359         <tr class="config-row inherited expandable">\r
360         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
361         <td class="sig">\r
362         <a id="Ext.Container-hideParent"></a>\r
363             <b>hideParent</b> : Boolean            <div class="mdesc">\r
364                         <div class="short">True to hide and show the component's container when hide/show is called on the component, false to hide and show the...</div>\r
365             <div class="long">\r
366                 True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide button on a window by setting hide:true on the button when adding it to its parent container.            </div>\r
367                         </div>\r
368         </td>\r
369         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>\r
370     </tr>\r
371         <tr class="config-row inherited alt expandable">\r
372         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
373         <td class="sig">\r
374         <a id="Ext.Container-id"></a>\r
375             <b>id</b> : String            <div class="mdesc">\r
376                         <div class="short">The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to ...</div>\r
377             <div class="long">\r
378                 The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to access the component later and you do not have an object reference available (e.g., using <a ext:cls="Ext.ComponentMgr" ext:member="getCmp" href="output/Ext.ComponentMgr.html#getCmp">Ext.ComponentMgr.getCmp</a>). Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.            </div>\r
379                         </div>\r
380         </td>\r
381         <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>\r
382     </tr>\r
383         <tr class="config-row inherited expandable">\r
384         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
385         <td class="sig">\r
386         <a id="Ext.Container-itemCls"></a>\r
387             <b>itemCls</b> : String            <div class="mdesc">\r
388                         <div class="short">An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCl...</div>\r
389             <div class="long">\r
390                 An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCls value if set, or ''). Since it is applied to the item wrapper, it allows you to write standard CSS rules that can apply to the field, the label (if specified) or any other element within the markup for the field. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code><i>// Apply a style to the field's label:</i>
391 &lt;style>
392     .required .x-form-item-label {font-weight:bold;color:red;}
393 &lt;/style>
394
395 <b>new</b> Ext.FormPanel({
396     height: 100,
397     renderTo: Ext.getBody(),
398     items: [{
399         xtype: <em>'textfield'</em>,
400         fieldLabel: <em>'Name'</em>,
401         itemCls: <em>'required'</em> <i>//<b>this</b> label will be styled</i>
402     },{
403         xtype: <em>'textfield'</em>,
404         fieldLabel: <em>'Favorite Color'</em>
405     }]
406 });</code></pre>            </div>\r
407                         </div>\r
408         </td>\r
409         <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>\r
410     </tr>\r
411         <tr class="config-row alt expandable">\r
412         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
413         <td class="sig">\r
414         <a id="Ext.Container-items"></a>\r
415             <b>items</b> : Mixed            <div class="mdesc">\r
416                         <div class="short">A single item, or an array of child Components to be added to this container. Each item can be any type of object bas...</div>\r
417             <div class="long">\r
418                 A single item, or an array of child Components to be added to this container. Each item can be any type of object based on <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.<br><br> Component config objects may also be specified in order to avoid the overhead of constructing a real Component object if lazy rendering might mean that the added Component will not be rendered immediately. To take advantage of this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config property to the registered type of the Component wanted.<br><br> For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>. If a single item is being passed, it should be passed directly as an object reference (e.g., items: {...}). Multiple items should be passed as an array of objects (e.g., items: [{...}, {...}]).            </div>\r
419                         </div>\r
420         </td>\r
421         <td class="msource">Container</td>\r
422     </tr>\r
423         <tr class="config-row inherited expandable">\r
424         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
425         <td class="sig">\r
426         <a id="Ext.Container-labelSeparator"></a>\r
427             <b>labelSeparator</b> : String            <div class="mdesc">\r
428                         <div class="short">The standard separator to display after the text of each form label (defaults to the value of Ext.layout.FormLayout.l...</div>\r
429             <div class="long">\r
430                 The standard separator to display after the text of each form label (defaults to the value of <a ext:cls="Ext.layout.FormLayout" ext:member="labelSeparator" href="output/Ext.layout.FormLayout.html#labelSeparator">Ext.layout.FormLayout.labelSeparator</a>, which is a colon ':' by default). To display no separator for this field's label specify empty string ''. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
431     height: 100,
432     renderTo: Ext.getBody(),
433     items: [{
434         xtype: <em>'textfield'</em>,
435         fieldLabel: <em>'Name'</em>,
436         labelSeparator: <em>'...'</em>
437     }]
438 });</code></pre>            </div>\r
439                         </div>\r
440         </td>\r
441         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>\r
442     </tr>\r
443         <tr class="config-row inherited alt expandable">\r
444         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
445         <td class="sig">\r
446         <a id="Ext.Container-labelStyle"></a>\r
447             <b>labelStyle</b> : String            <div class="mdesc">\r
448                         <div class="short">A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if se...</div>\r
449             <div class="long">\r
450                 A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if set, or '').<code></code>. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
451     height: 100,
452     renderTo: Ext.getBody(),
453     items: [{
454         xtype: <em>'textfield'</em>,
455         fieldLabel: <em>'Name'</em>,
456         labelStyle: <em>'font-weight:bold;'</em>
457     }]
458 });</code></pre>            </div>\r
459                         </div>\r
460         </td>\r
461         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>\r
462     </tr>\r
463         <tr class="config-row expandable">\r
464         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
465         <td class="sig">\r
466         <a id="Ext.Container-layout"></a>\r
467             <b>layout</b> : String            <div class="mdesc">\r
468                         <div class="short">The layout type to be used in this container. If not specified, a default Ext.layout.ContainerLayout will be created ...</div>\r
469             <div class="long">\r
470                 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. 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>. Valid values are:<ul class="mdetail-params"> <li>absolute</li> <li>accordion</li> <li>anchor</li> <li>border</li> <li>card</li> <li>column</li> <li>fit</li> <li>form</li> <li>table</li></ul>            </div>\r
471                         </div>\r
472         </td>\r
473         <td class="msource">Container</td>\r
474     </tr>\r
475         <tr class="config-row alt expandable">\r
476         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
477         <td class="sig">\r
478         <a id="Ext.Container-layoutConfig"></a>\r
479             <b>layoutConfig</b> : Object            <div class="mdesc">\r
480                         <div class="short">This is a config object containing properties specific to the chosen layout (to be used in conjunction with the layou...</div>\r
481             <div class="long">\r
482                 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.Absolute" href="output/Ext.layout.Absolute.html">Ext.layout.Absolute</a></li> <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>\r
483                         </div>\r
484         </td>\r
485         <td class="msource">Container</td>\r
486     </tr>\r
487         <tr class="config-row inherited expandable">\r
488         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
489         <td class="sig">\r
490         <a id="Ext.Container-listeners"></a>\r
491             <b>listeners</b> : Object            <div class="mdesc">\r
492                         <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>\r
493             <div class="long">\r
494                 (optional) A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the <a ext:cls="Ext.util.Observable" ext:member="addListener" href="output/Ext.util.Observable.html#addListener">addListener</a> example for attaching multiple handlers at once.            </div>\r
495                         </div>\r
496         </td>\r
497         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>\r
498     </tr>\r
499         <tr class="config-row alt expandable">\r
500         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
501         <td class="sig">\r
502         <a id="Ext.Container-monitorResize"></a>\r
503             <b>monitorResize</b> : Boolean            <div class="mdesc">\r
504                         <div class="short">True to automatically monitor window resize events to handle anything that is sensitive to the current size of the vi...</div>\r
505             <div class="long">\r
506                 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>\r
507                         </div>\r
508         </td>\r
509         <td class="msource">Container</td>\r
510     </tr>\r
511         <tr class="config-row inherited expandable">\r
512         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
513         <td class="sig">\r
514         <a id="Ext.Container-overCls"></a>\r
515             <b>overCls</b> : String            <div class="mdesc">\r
516                         <div class="short">An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...</div>\r
517             <div class="long">\r
518                 An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized "active" or "hover" styles to the component or any of its children using standard CSS rules.            </div>\r
519                         </div>\r
520         </td>\r
521         <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>\r
522     </tr>\r
523         <tr class="config-row inherited alt">\r
524         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
525         <td class="sig">\r
526         <a id="Ext.Container-pageX"></a>\r
527             <b>pageX</b> : Number            <div class="mdesc">\r
528                             The page level x coordinate for this component if contained within a positioning container.                        </div>\r
529         </td>\r
530         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>\r
531     </tr>\r
532         <tr class="config-row inherited">\r
533         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
534         <td class="sig">\r
535         <a id="Ext.Container-pageY"></a>\r
536             <b>pageY</b> : Number            <div class="mdesc">\r
537                             The page level y coordinate for this component if contained within a positioning container.                        </div>\r
538         </td>\r
539         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>\r
540     </tr>\r
541         <tr class="config-row inherited alt expandable">\r
542         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
543         <td class="sig">\r
544         <a id="Ext.Container-plugins"></a>\r
545             <b>plugins</b> : Object/Array            <div class="mdesc">\r
546                         <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>\r
547             <div class="long">\r
548                 An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.            </div>\r
549                         </div>\r
550         </td>\r
551         <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>\r
552     </tr>\r
553         <tr class="config-row inherited expandable">\r
554         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
555         <td class="sig">\r
556         <a id="Ext.Container-renderTo"></a>\r
557             <b>renderTo</b> : Mixed            <div class="mdesc">\r
558                         <div class="short">The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using...</div>\r
559             <div class="long">\r
560                 The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using this config, a call to render() is not required.            </div>\r
561                         </div>\r
562         </td>\r
563         <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>\r
564     </tr>\r
565         <tr class="config-row inherited alt expandable">\r
566         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
567         <td class="sig">\r
568         <a id="Ext.Container-stateEvents"></a>\r
569             <b>stateEvents</b> : Array            <div class="mdesc">\r
570                         <div class="short">An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be...</div>\r
571             <div class="long">\r
572                 An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be any types of events supported by this component, including browser or custom events (e.g., ['click', 'customerchange']). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
573                         </div>\r
574         </td>\r
575         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>\r
576     </tr>\r
577         <tr class="config-row inherited expandable">\r
578         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
579         <td class="sig">\r
580         <a id="Ext.Container-stateId"></a>\r
581             <b>stateId</b> : String            <div class="mdesc">\r
582                         <div class="short">The unique id for this component to use for state management purposes (defaults to the component id if one was set, o...</div>\r
583             <div class="long">\r
584                 The unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
585                         </div>\r
586         </td>\r
587         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>\r
588     </tr>\r
589         <tr class="config-row inherited alt expandable">\r
590         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
591         <td class="sig">\r
592         <a id="Ext.Container-stateful"></a>\r
593             <b>stateful</b> : Boolean            <div class="mdesc">\r
594                         <div class="short">A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startu...</div>\r
595             <div class="long">\r
596                 <p>A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup. The component must have either a <a ext:cls="Ext.Component" ext:member="stateId" href="output/Ext.Component.html#stateId">stateId</a> or <a ext:cls="Ext.Component" ext:member="id" href="output/Ext.Component.html#id">id</a> assigned for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a component.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="Ext.Component" ext:member="staterestore" href="output/Ext.Component.html#staterestore">staterestore</a>, <a ext:cls="Ext.Component" ext:member="beforestatesave" href="output/Ext.Component.html#beforestatesave">beforestatesave</a> and <a ext:cls="Ext.Component" ext:member="statesave" href="output/Ext.Component.html#statesave">statesave</a> events</p>            </div>\r
597                         </div>\r
598         </td>\r
599         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>\r
600     </tr>\r
601         <tr class="config-row inherited expandable">\r
602         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
603         <td class="sig">\r
604         <a id="Ext.Container-style"></a>\r
605             <b>style</b> : String            <div class="mdesc">\r
606                         <div class="short">A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.Element.app...</div>\r
607             <div class="long">\r
608                 A custom style specification to be applied to this component's Element. Should be a valid argument to <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a>.            </div>\r
609                         </div>\r
610         </td>\r
611         <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>\r
612     </tr>\r
613         <tr class="config-row inherited alt">\r
614         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
615         <td class="sig">\r
616         <a id="Ext.Container-width"></a>\r
617             <b>width</b> : Number            <div class="mdesc">\r
618                             The width of this component in pixels (defaults to auto).                        </div>\r
619         </td>\r
620         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>\r
621     </tr>\r
622         <tr class="config-row inherited">\r
623         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
624         <td class="sig">\r
625         <a id="Ext.Container-x"></a>\r
626             <b>x</b> : Number            <div class="mdesc">\r
627                             The local x (left) coordinate for this component if contained within a positioning container.                        </div>\r
628         </td>\r
629         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>\r
630     </tr>\r
631         <tr class="config-row inherited alt expandable">\r
632         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
633         <td class="sig">\r
634         <a id="Ext.Container-xtype"></a>\r
635             <b>xtype</b> : String            <div class="mdesc">\r
636                         <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>\r
637             <div class="long">\r
638                 The registered xtype to create. This config option is not used when passing a config object into a constructor. This config option is used only when lazy instantiation is being used, and a child item of a Container is being specified not as a fully instantiated Component, but as a <i>Component config object</i>. The xtype will be looked up at render time up to determine what type of child Component to create.<br><br> The predefined xtypes are listed <a ext:cls="Ext.Component" href="output/Ext.Component.html">here</a>. <br><br> If you subclass Components to create your own Components, you may register them using <a ext:cls="Ext.ComponentMgr" ext:member="registerType" href="output/Ext.ComponentMgr.html#registerType">Ext.ComponentMgr.registerType</a> in order to be able to take advantage of lazy instantiation and rendering.            </div>\r
639                         </div>\r
640         </td>\r
641         <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>\r
642     </tr>\r
643         <tr class="config-row inherited">\r
644         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
645         <td class="sig">\r
646         <a id="Ext.Container-y"></a>\r
647             <b>y</b> : Number            <div class="mdesc">\r
648                             The local y (top) coordinate for this component if contained within a positioning container.                        </div>\r
649         </td>\r
650         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>\r
651     </tr>\r
652             </table>
653                 <a id="Ext.Container-props"></a>
654         <h2>Public Properties</h2>
655                 <table cellspacing="0" class="member-table">
656             <tr>
657                 <th class="sig-header" colspan="2">Property</th>
658                 <th class="msource-header">Defined By</th>
659             </tr>
660                 <tr class="property-row inherited">\r
661         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
662         <td class="sig">\r
663         <a id="Ext.Container-disabled"></a>\r
664             <b>disabled</b> : Boolean            <div class="mdesc">\r
665                             True if this component is disabled. Read-only.                        </div>\r
666         </td>\r
667         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
668     </tr>\r
669         <tr class="property-row inherited alt">\r
670         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
671         <td class="sig">\r
672         <a id="Ext.Container-hidden"></a>\r
673             <b>hidden</b> : Boolean            <div class="mdesc">\r
674                             
675 True if this component is hidden. Read-only.                        </div>\r
676         </td>\r
677         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
678     </tr>\r
679         <tr class="property-row inherited">\r
680         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
681         <td class="sig">\r
682         <a id="Ext.Container-initialConfig"></a>\r
683             <b>initialConfig</b> : Object            <div class="mdesc">\r
684                             This Component's initial configuration specification. Read-only.                        </div>\r
685         </td>\r
686         <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>\r
687     </tr>\r
688         <tr class="property-row alt">\r
689         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
690         <td class="sig">\r
691         <a id="Ext.Container-items"></a>\r
692             <b>items</b> : MixedCollection            <div class="mdesc">\r
693                             The collection of components in this container as a <a ext:cls="Ext.util.MixedCollection" href="output/Ext.util.MixedCollection.html">Ext.util.MixedCollection</a>                        </div>\r
694         </td>\r
695         <td class="msource">Container</td>\r
696     </tr>\r
697         <tr class="property-row inherited expandable">\r
698         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
699         <td class="sig">\r
700         <a id="Ext.Container-ownerCt"></a>\r
701             <b>ownerCt</b> : Ext.Container            <div class="mdesc">\r
702                         <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
703 the component is added to a...</div>\r
704             <div class="long">\r
705                 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
706 the component is added to a container).  Read-only.            </div>\r
707                         </div>\r
708         </td>\r
709         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>\r
710     </tr>\r
711         <tr class="property-row inherited alt">\r
712         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
713         <td class="sig">\r
714         <a id="Ext.Container-rendered"></a>\r
715             <b>rendered</b> : Boolean            <div class="mdesc">\r
716                             True if this component has been rendered. Read-only.                        </div>\r
717         </td>\r
718         <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>\r
719     </tr>\r
720             </table>
721                 <a id="Ext.Container-methods"></a>
722         <h2>Public Methods</h2>
723                 <table cellspacing="0" class="member-table">
724             <tr>
725                 <th class="sig-header" colspan="2">Method</th>
726                 <th class="msource-header">Defined By</th>
727             </tr>
728                 <tr class="method-row expandable">\r
729         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
730         <td class="sig">\r
731         <a id="Ext.Container-add"></a>\r
732             <b>add</b>(&nbsp;<code>Ext.Component/Object component</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
733                         <div class="short">Adds a Component to this Container. Fires the beforeadd event before
734 adding, then fires the add event after the compo...</div>\r
735             <div class="long">\r
736                 <p>Adds a <a ext:cls="Ext.Component" href="output/Ext.Component.html">Component</a> to this Container. Fires the <a ext:cls="Ext.Container" ext:member="beforeadd" href="output/Ext.Container.html#beforeadd">beforeadd</a> event before
737 adding, then fires the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> event after the component has been added.</p>
738 <p>You will never call the render method of a child Component when using a Container.
739 Child Components are rendered by this Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when
740 this Container is first rendered.</p>
741 <p>Certain layout managers allow dynamic addition of child components. Those that do
742 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
743 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
744 <p>If the Container is already rendered when add is called, you may need to call
745 <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any unrendered child Components
746 to be rendered. This is required so that you can add multiple child components if needed
747 while only refreshing the layout once.</p>
748 <p>When creating complex UIs, it is important to remember that sizing and positioning
749 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager. If
750 you expect child items to be sized in response to user interactions, you must
751 specify a layout manager which creates and manages the type of layout you have in mind.</p>
752 <p><b>Omitting the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic layout manager is
753 used which does nothnig but render child components sequentially into the Container.
754 No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
755         <strong>Parameters:</strong>\r
756         <ul><li><code>component</code> : Ext.Component/Object<div class="sub-desc">The Component to add.<br><br>
757 Ext uses lazy rendering, and will only render the added Component should
758 it become necessary, that is: when the Container is layed out either on first render
759 or in response to a <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> call.<br><br>
760 A Component config object may be passed instead of an instantiated Component object.
761 The type of Component created from a config object is determined by the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">xtype</a>
762 config property. If no xtype is configured, the Container's <a ext:cls="Ext.Container" ext:member="defaultType" href="output/Ext.Container.html#defaultType">defaultType</a>
763 is used.<br><br>
764 For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>\r
765         <strong>Returns:</strong>\r
766         <ul>\r
767             <li><code>Ext.Component</code><div class="sub-desc">component The Component (or config object) that was added with the Container's default config values applied. <p>example:</p><pre><code> var myNewGrid = new Ext.grid.GridPanel({ store: myStore, colModel: myColModel }); myTabPanel.add(myNewGrid); myTabPanel.setActiveTab(myNewGrid); </code></pre></div></li>\r
768         </ul>\r
769     </div>\r
770                 </div>\r
771                         </div>\r
772         </td>\r
773         <td class="msource">Container</td>\r
774     </tr>\r
775         <tr class="method-row inherited alt expandable">\r
776         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
777         <td class="sig">\r
778         <a id="Ext.Container-addClass"></a>\r
779             <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
780                         <div class="short">Adds a CSS class to the component's underlying element.</div>\r
781             <div class="long">\r
782                 Adds a CSS class to the component's underlying element.    <div class="mdetail-params">\r
783         <strong>Parameters:</strong>\r
784         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>\r
785         <strong>Returns:</strong>\r
786         <ul>\r
787             <li><code>void</code></li>\r
788         </ul>\r
789     </div>\r
790                 </div>\r
791                         </div>\r
792         </td>\r
793         <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>\r
794     </tr>\r
795         <tr class="method-row inherited expandable">\r
796         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
797         <td class="sig">\r
798         <a id="Ext.Container-addEvents"></a>\r
799             <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">\r
800                         <div class="short">Used to define events on this Observable</div>\r
801             <div class="long">\r
802                 Used to define events on this Observable    <div class="mdetail-params">\r
803         <strong>Parameters:</strong>\r
804         <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>\r
805         <strong>Returns:</strong>\r
806         <ul>\r
807             <li><code>void</code></li>\r
808         </ul>\r
809     </div>\r
810                 </div>\r
811                         </div>\r
812         </td>\r
813         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>\r
814     </tr>\r
815         <tr class="method-row inherited alt expandable">\r
816         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
817         <td class="sig">\r
818         <a id="Ext.Container-addListener"></a>\r
819             <b>addListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
820                         <div class="short">Appends an event handler to this component</div>\r
821             <div class="long">\r
822                 Appends an event handler to this component    <div class="mdetail-params">\r
823         <strong>Parameters:</strong>\r
824         <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
825 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
826 properties. This may contain any of the following properties:<ul>
827 <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>
828 <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>
829 <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>
830 <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
831 by the specified number of milliseconds. If the event fires again within that time, the original
832 handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
833 </ul><br>
834 <p>
835 <b>Combining Options</b><br>
836 Using the options argument, it is possible to combine different types of listeners:<br>
837 <br>
838 A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
839 <pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
840     single: true,
841     delay: 100,
842     forumId: 4
843 });</code></pre>
844 <p>
845 <b>Attaching multiple handlers in 1 call</b><br>
846 The method also allows for a single argument to be passed which is a config object containing properties
847 which specify multiple handlers.
848 <p>
849 <pre><code>foo.on({
850     <em>'click'</em> : {
851         fn: <b>this</b>.onClick,
852         scope: <b>this</b>,
853         delay: 100
854     },
855     <em>'mouseover'</em> : {
856         fn: <b>this</b>.onMouseOver,
857         scope: <b>this</b>
858     },
859     <em>'mouseout'</em> : {
860         fn: <b>this</b>.onMouseOut,
861         scope: <b>this</b>
862     }
863 });</code></pre>
864 <p>
865 Or a shorthand syntax:<br>
866 <pre><code>foo.on({
867     <em>'click'</em> : <b>this</b>.onClick,
868     <em>'mouseover'</em> : <b>this</b>.onMouseOver,
869     <em>'mouseout'</em> : <b>this</b>.onMouseOut,
870      scope: <b>this</b>
871 });</code></pre></div></li>        </ul>\r
872         <strong>Returns:</strong>\r
873         <ul>\r
874             <li><code>void</code></li>\r
875         </ul>\r
876     </div>\r
877                 </div>\r
878                         </div>\r
879         </td>\r
880         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>\r
881     </tr>\r
882         <tr class="method-row inherited expandable">\r
883         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
884         <td class="sig">\r
885         <a id="Ext.Container-applyToMarkup"></a>\r
886             <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">\r
887                         <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>\r
888             <div class="long">\r
889                 Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">\r
890         <strong>Parameters:</strong>\r
891         <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>\r
892         <strong>Returns:</strong>\r
893         <ul>\r
894             <li><code>void</code></li>\r
895         </ul>\r
896     </div>\r
897                 </div>\r
898                         </div>\r
899         </td>\r
900         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>\r
901     </tr>\r
902         <tr class="method-row alt expandable">\r
903         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
904         <td class="sig">\r
905         <a id="Ext.Container-bubble"></a>\r
906             <b>bubble</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
907                         <div class="short">Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of...</div>\r
908             <div class="long">\r
909                 Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of
910 function call will be the scope provided or the current component. The arguments to the function
911 will be the args provided or the current component. If the function returns false at any point,
912 the bubble is stopped.    <div class="mdetail-params">\r
913         <strong>Parameters:</strong>\r
914         <ul><li><code>fn</code> : Function<div class="sub-desc">The function to call</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope of the function (defaults to current node)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (default to passing the current component)</div></li>        </ul>\r
915         <strong>Returns:</strong>\r
916         <ul>\r
917             <li><code>void</code></li>\r
918         </ul>\r
919     </div>\r
920                 </div>\r
921                         </div>\r
922         </td>\r
923         <td class="msource">Container</td>\r
924     </tr>\r
925         <tr class="method-row expandable">\r
926         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
927         <td class="sig">\r
928         <a id="Ext.Container-cascade"></a>\r
929             <b>cascade</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
930                         <div class="short">Cascades down the component/container heirarchy from this component (called first), calling the specified function wi...</div>\r
931             <div class="long">\r
932                 Cascades down the component/container heirarchy from this component (called first), calling the specified function with
933 each component. The scope (<i>this</i>) of
934 function call will be the scope provided or the current component. The arguments to the function
935 will be the args provided or the current component. If the function returns false at any point,
936 the cascade is stopped on that branch.    <div class="mdetail-params">\r
937         <strong>Parameters:</strong>\r
938         <ul><li><code>fn</code> : Function<div class="sub-desc">The function to call</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope of the function (defaults to current component)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (defaults to passing the current component)</div></li>        </ul>\r
939         <strong>Returns:</strong>\r
940         <ul>\r
941             <li><code>void</code></li>\r
942         </ul>\r
943     </div>\r
944                 </div>\r
945                         </div>\r
946         </td>\r
947         <td class="msource">Container</td>\r
948     </tr>\r
949         <tr class="method-row inherited alt expandable">\r
950         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
951         <td class="sig">\r
952         <a id="Ext.Container-cloneConfig"></a>\r
953             <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
954                         <div class="short">Clone the current component using the original config values passed into this instance by default.</div>\r
955             <div class="long">\r
956                 Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">\r
957         <strong>Parameters:</strong>\r
958         <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
959 An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>\r
960         <strong>Returns:</strong>\r
961         <ul>\r
962             <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>\r
963         </ul>\r
964     </div>\r
965                 </div>\r
966                         </div>\r
967         </td>\r
968         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>\r
969     </tr>\r
970         <tr class="method-row inherited expandable">\r
971         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
972         <td class="sig">\r
973         <a id="Ext.Container-destroy"></a>\r
974             <b>destroy</b>() : void            <div class="mdesc">\r
975                         <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
976 removing the c...</div>\r
977             <div class="long">\r
978                 Destroys this component by purging any event listeners, removing the component's element from the DOM,
979 removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
980 <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
981 should usually not need to be called directly.    <div class="mdetail-params">\r
982         <strong>Parameters:</strong>\r
983         <ul><li>None.</li>        </ul>\r
984         <strong>Returns:</strong>\r
985         <ul>\r
986             <li><code>void</code></li>\r
987         </ul>\r
988     </div>\r
989                 </div>\r
990                         </div>\r
991         </td>\r
992         <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>\r
993     </tr>\r
994         <tr class="method-row inherited alt expandable">\r
995         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
996         <td class="sig">\r
997         <a id="Ext.Container-disable"></a>\r
998             <b>disable</b>() : Ext.Component            <div class="mdesc">\r
999                         <div class="short">Disable this component.</div>\r
1000             <div class="long">\r
1001                 Disable this component.    <div class="mdetail-params">\r
1002         <strong>Parameters:</strong>\r
1003         <ul><li>None.</li>        </ul>\r
1004         <strong>Returns:</strong>\r
1005         <ul>\r
1006             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1007         </ul>\r
1008     </div>\r
1009                 </div>\r
1010                         </div>\r
1011         </td>\r
1012         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>\r
1013     </tr>\r
1014         <tr class="method-row expandable">\r
1015         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1016         <td class="sig">\r
1017         <a id="Ext.Container-doLayout"></a>\r
1018             <b>doLayout</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1019                         <div class="short">Force this container's layout to be recalculated. A call to this function is required after adding a new component
1020 to...</div>\r
1021             <div class="long">\r
1022                 Force this container's layout to be recalculated. A call to this function is required after adding a new component
1023 to an already rendered container, or possibly after changing sizing/position properties of child components.    <div class="mdetail-params">\r
1024         <strong>Parameters:</strong>\r
1025         <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
1026 calc layouts as required (defaults to false, which calls doLayout recursively for each subcontainer)</div></li>        </ul>\r
1027         <strong>Returns:</strong>\r
1028         <ul>\r
1029             <li><code>void</code></li>\r
1030         </ul>\r
1031     </div>\r
1032                 </div>\r
1033                         </div>\r
1034         </td>\r
1035         <td class="msource">Container</td>\r
1036     </tr>\r
1037         <tr class="method-row inherited alt expandable">\r
1038         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1039         <td class="sig">\r
1040         <a id="Ext.Container-enable"></a>\r
1041             <b>enable</b>() : Ext.Component            <div class="mdesc">\r
1042                         <div class="short">Enable this component.</div>\r
1043             <div class="long">\r
1044                 Enable this component.    <div class="mdetail-params">\r
1045         <strong>Parameters:</strong>\r
1046         <ul><li>None.</li>        </ul>\r
1047         <strong>Returns:</strong>\r
1048         <ul>\r
1049             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1050         </ul>\r
1051     </div>\r
1052                 </div>\r
1053                         </div>\r
1054         </td>\r
1055         <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>\r
1056     </tr>\r
1057         <tr class="method-row expandable">\r
1058         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1059         <td class="sig">\r
1060         <a id="Ext.Container-find"></a>\r
1061             <b>find</b>(&nbsp;<code>String prop</code>, <code>String value</code>&nbsp;) : Array            <div class="mdesc">\r
1062                         <div class="short">Find a component under this container at any level by property</div>\r
1063             <div class="long">\r
1064                 Find a component under this container at any level by property    <div class="mdetail-params">\r
1065         <strong>Parameters:</strong>\r
1066         <ul><li><code>prop</code> : String<div class="sub-desc"></div></li><li><code>value</code> : String<div class="sub-desc"></div></li>        </ul>\r
1067         <strong>Returns:</strong>\r
1068         <ul>\r
1069             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1070         </ul>\r
1071     </div>\r
1072                 </div>\r
1073                         </div>\r
1074         </td>\r
1075         <td class="msource">Container</td>\r
1076     </tr>\r
1077         <tr class="method-row alt expandable">\r
1078         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1079         <td class="sig">\r
1080         <a id="Ext.Container-findBy"></a>\r
1081             <b>findBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1082                         <div class="short">Find a component under this container at any level by a custom function. If the passed function returns
1083 true, the com...</div>\r
1084             <div class="long">\r
1085                 Find a component under this container at any level by a custom function. If the passed function returns
1086 true, the component will be included in the results. The passed function is called with the arguments (component, this container).    <div class="mdetail-params">\r
1087         <strong>Parameters:</strong>\r
1088         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1089         <strong>Returns:</strong>\r
1090         <ul>\r
1091             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1092         </ul>\r
1093     </div>\r
1094                 </div>\r
1095                         </div>\r
1096         </td>\r
1097         <td class="msource">Container</td>\r
1098     </tr>\r
1099         <tr class="method-row expandable">\r
1100         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1101         <td class="sig">\r
1102         <a id="Ext.Container-findById"></a>\r
1103             <b>findById</b>(&nbsp;<code>String id</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1104                         <div class="short">Find a component under this container at any level by id</div>\r
1105             <div class="long">\r
1106                 Find a component under this container at any level by id    <div class="mdetail-params">\r
1107         <strong>Parameters:</strong>\r
1108         <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>\r
1109         <strong>Returns:</strong>\r
1110         <ul>\r
1111             <li><code>Ext.Component</code></li>\r
1112         </ul>\r
1113     </div>\r
1114                 </div>\r
1115                         </div>\r
1116         </td>\r
1117         <td class="msource">Container</td>\r
1118     </tr>\r
1119         <tr class="method-row alt expandable">\r
1120         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1121         <td class="sig">\r
1122         <a id="Ext.Container-findByType"></a>\r
1123             <b>findByType</b>(&nbsp;<code>String/Class xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1124                         <div class="short">Find a component under this container at any level by xtype or class</div>\r
1125             <div class="long">\r
1126                 Find a component under this container at any level by xtype or class    <div class="mdetail-params">\r
1127         <strong>Parameters:</strong>\r
1128         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) False to check whether this Component is descended from the xtype (this is
1129 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
1130         <strong>Returns:</strong>\r
1131         <ul>\r
1132             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1133         </ul>\r
1134     </div>\r
1135                 </div>\r
1136                         </div>\r
1137         </td>\r
1138         <td class="msource">Container</td>\r
1139     </tr>\r
1140         <tr class="method-row inherited expandable">\r
1141         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1142         <td class="sig">\r
1143         <a id="Ext.Container-findParentBy"></a>\r
1144             <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Ext.Container            <div class="mdesc">\r
1145                         <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
1146 true, the con...</div>\r
1147             <div class="long">\r
1148                 Find a container above this component at any level by a custom function. If the passed function returns
1149 true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">\r
1150         <strong>Parameters:</strong>\r
1151         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1152         <strong>Returns:</strong>\r
1153         <ul>\r
1154             <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>\r
1155         </ul>\r
1156     </div>\r
1157                 </div>\r
1158                         </div>\r
1159         </td>\r
1160         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>\r
1161     </tr>\r
1162         <tr class="method-row inherited alt expandable">\r
1163         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1164         <td class="sig">\r
1165         <a id="Ext.Container-findParentByType"></a>\r
1166             <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">\r
1167                         <div class="short">Find a container above this component at any level by xtype or class</div>\r
1168             <div class="long">\r
1169                 Find a container above this component at any level by xtype or class    <div class="mdetail-params">\r
1170         <strong>Parameters:</strong>\r
1171         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li>        </ul>\r
1172         <strong>Returns:</strong>\r
1173         <ul>\r
1174             <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>\r
1175         </ul>\r
1176     </div>\r
1177                 </div>\r
1178                         </div>\r
1179         </td>\r
1180         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>\r
1181     </tr>\r
1182         <tr class="method-row inherited expandable">\r
1183         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1184         <td class="sig">\r
1185         <a id="Ext.Container-fireEvent"></a>\r
1186             <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">\r
1187                         <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>\r
1188             <div class="long">\r
1189                 Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">\r
1190         <strong>Parameters:</strong>\r
1191         <ul><li><code>eventName</code> : String<div class="sub-desc"></div></li><li><code>args</code> : Object...<div class="sub-desc">Variable number of parameters are passed to handlers</div></li>        </ul>\r
1192         <strong>Returns:</strong>\r
1193         <ul>\r
1194             <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>\r
1195         </ul>\r
1196     </div>\r
1197                 </div>\r
1198                         </div>\r
1199         </td>\r
1200         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>\r
1201     </tr>\r
1202         <tr class="method-row inherited alt expandable">\r
1203         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1204         <td class="sig">\r
1205         <a id="Ext.Container-focus"></a>\r
1206             <b>focus</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean selectText</code>]</span>, <span class="optional" title="Optional">[<code>Boolean/Number delay</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
1207                         <div class="short">Try to focus this component.</div>\r
1208             <div class="long">\r
1209                 Try to focus this component.    <div class="mdetail-params">\r
1210         <strong>Parameters:</strong>\r
1211         <ul><li><code>selectText</code> : Boolean<div class="sub-desc">(optional) If applicable, true to also select the text in this component</div></li><li><code>delay</code> : Boolean/Number<div class="sub-desc">(optional) Delay the focus this number of milliseconds (true for 10 milliseconds)</div></li>        </ul>\r
1212         <strong>Returns:</strong>\r
1213         <ul>\r
1214             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1215         </ul>\r
1216     </div>\r
1217                 </div>\r
1218                         </div>\r
1219         </td>\r
1220         <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>\r
1221     </tr>\r
1222         <tr class="method-row inherited expandable">\r
1223         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1224         <td class="sig">\r
1225         <a id="Ext.Container-getBox"></a>\r
1226             <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">\r
1227                         <div class="short">Gets the current box measurements of the component's underlying element.</div>\r
1228             <div class="long">\r
1229                 Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
1230         <strong>Parameters:</strong>\r
1231         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
1232         <strong>Returns:</strong>\r
1233         <ul>\r
1234             <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>\r
1235         </ul>\r
1236     </div>\r
1237                 </div>\r
1238                         </div>\r
1239         </td>\r
1240         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>\r
1241     </tr>\r
1242         <tr class="method-row alt expandable">\r
1243         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1244         <td class="sig">\r
1245         <a id="Ext.Container-getComponent"></a>\r
1246             <b>getComponent</b>(&nbsp;<code>String/Number id</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1247                         <div class="short">Gets a direct child Component by id, or by index.</div>\r
1248             <div class="long">\r
1249                 Gets a direct child Component by id, or by index.    <div class="mdetail-params">\r
1250         <strong>Parameters:</strong>\r
1251         <ul><li><code>id</code> : String/Number<div class="sub-desc">or index of child Component to return.</div></li>        </ul>\r
1252         <strong>Returns:</strong>\r
1253         <ul>\r
1254             <li><code>Ext.Component</code></li>\r
1255         </ul>\r
1256     </div>\r
1257                 </div>\r
1258                         </div>\r
1259         </td>\r
1260         <td class="msource">Container</td>\r
1261     </tr>\r
1262         <tr class="method-row inherited expandable">\r
1263         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1264         <td class="sig">\r
1265         <a id="Ext.Container-getEl"></a>\r
1266             <b>getEl</b>() : Ext.Element            <div class="mdesc">\r
1267                         <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>\r
1268             <div class="long">\r
1269                 Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">\r
1270         <strong>Parameters:</strong>\r
1271         <ul><li>None.</li>        </ul>\r
1272         <strong>Returns:</strong>\r
1273         <ul>\r
1274             <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>\r
1275         </ul>\r
1276     </div>\r
1277                 </div>\r
1278                         </div>\r
1279         </td>\r
1280         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>\r
1281     </tr>\r
1282         <tr class="method-row inherited alt expandable">\r
1283         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1284         <td class="sig">\r
1285         <a id="Ext.Container-getId"></a>\r
1286             <b>getId</b>() : String            <div class="mdesc">\r
1287                         <div class="short">Returns the id of this component.</div>\r
1288             <div class="long">\r
1289                 Returns the id of this component.    <div class="mdetail-params">\r
1290         <strong>Parameters:</strong>\r
1291         <ul><li>None.</li>        </ul>\r
1292         <strong>Returns:</strong>\r
1293         <ul>\r
1294             <li><code>String</code></li>\r
1295         </ul>\r
1296     </div>\r
1297                 </div>\r
1298                         </div>\r
1299         </td>\r
1300         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>\r
1301     </tr>\r
1302         <tr class="method-row inherited expandable">\r
1303         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1304         <td class="sig">\r
1305         <a id="Ext.Container-getItemId"></a>\r
1306             <b>getItemId</b>() : String            <div class="mdesc">\r
1307                         <div class="short">Returns the item id of this component.</div>\r
1308             <div class="long">\r
1309                 Returns the item id of this component.    <div class="mdetail-params">\r
1310         <strong>Parameters:</strong>\r
1311         <ul><li>None.</li>        </ul>\r
1312         <strong>Returns:</strong>\r
1313         <ul>\r
1314             <li><code>String</code></li>\r
1315         </ul>\r
1316     </div>\r
1317                 </div>\r
1318                         </div>\r
1319         </td>\r
1320         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>\r
1321     </tr>\r
1322         <tr class="method-row alt expandable">\r
1323         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1324         <td class="sig">\r
1325         <a id="Ext.Container-getLayout"></a>\r
1326             <b>getLayout</b>() : ContainerLayout            <div class="mdesc">\r
1327                         <div class="short">Returns the layout currently in use by the container.  If the container does not currently have a layout
1328 set, a defau...</div>\r
1329             <div class="long">\r
1330                 Returns the layout currently in use by the container.  If the container does not currently have a layout
1331 set, a default <a ext:cls="Ext.layout.ContainerLayout" href="output/Ext.layout.ContainerLayout.html">Ext.layout.ContainerLayout</a> will be created and set as the container's layout.    <div class="mdetail-params">\r
1332         <strong>Parameters:</strong>\r
1333         <ul><li>None.</li>        </ul>\r
1334         <strong>Returns:</strong>\r
1335         <ul>\r
1336             <li><code>ContainerLayout</code><div class="sub-desc">layout The container's layout</div></li>\r
1337         </ul>\r
1338     </div>\r
1339                 </div>\r
1340                         </div>\r
1341         </td>\r
1342         <td class="msource">Container</td>\r
1343     </tr>\r
1344         <tr class="method-row expandable">\r
1345         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1346         <td class="sig">\r
1347         <a id="Ext.Container-getLayoutTarget"></a>\r
1348             <b>getLayoutTarget</b>() : Ext.Element            <div class="mdesc">\r
1349                         <div class="short">Returns the Element to be used to contain the child Components of this Container.
1350 An implementation is provided which...</div>\r
1351             <div class="long">\r
1352                 <p>Returns the Element to be used to contain the child Components of this Container.</p>
1353 <p>An implementation is provided which returns the Container's <a ext:cls="Ext.Container" ext:member="getEl" href="output/Ext.Container.html#getEl">Element</a>, but
1354 if there is a more complex structure to a Container, this may be overridden to return
1355 the element into which the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> renders child Components.</p>    <div class="mdetail-params">\r
1356         <strong>Parameters:</strong>\r
1357         <ul><li>None.</li>        </ul>\r
1358         <strong>Returns:</strong>\r
1359         <ul>\r
1360             <li><code>Ext.Element</code><div class="sub-desc">The Element to render child Components into.</div></li>\r
1361         </ul>\r
1362     </div>\r
1363                 </div>\r
1364                         </div>\r
1365         </td>\r
1366         <td class="msource">Container</td>\r
1367     </tr>\r
1368         <tr class="method-row inherited alt expandable">\r
1369         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1370         <td class="sig">\r
1371         <a id="Ext.Container-getPosition"></a>\r
1372             <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1373                         <div class="short">Gets the current XY position of the component's underlying element.</div>\r
1374             <div class="long">\r
1375                 Gets the current XY position of the component's underlying element.    <div class="mdetail-params">\r
1376         <strong>Parameters:</strong>\r
1377         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
1378         <strong>Returns:</strong>\r
1379         <ul>\r
1380             <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>\r
1381         </ul>\r
1382     </div>\r
1383                 </div>\r
1384                         </div>\r
1385         </td>\r
1386         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>\r
1387     </tr>\r
1388         <tr class="method-row inherited expandable">\r
1389         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1390         <td class="sig">\r
1391         <a id="Ext.Container-getSize"></a>\r
1392             <b>getSize</b>() : Object            <div class="mdesc">\r
1393                         <div class="short">Gets the current size of the component's underlying element.</div>\r
1394             <div class="long">\r
1395                 Gets the current size of the component's underlying element.    <div class="mdetail-params">\r
1396         <strong>Parameters:</strong>\r
1397         <ul><li>None.</li>        </ul>\r
1398         <strong>Returns:</strong>\r
1399         <ul>\r
1400             <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>\r
1401         </ul>\r
1402     </div>\r
1403                 </div>\r
1404                         </div>\r
1405         </td>\r
1406         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>\r
1407     </tr>\r
1408         <tr class="method-row inherited alt expandable">\r
1409         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1410         <td class="sig">\r
1411         <a id="Ext.Container-getXType"></a>\r
1412             <b>getXType</b>() : String            <div class="mdesc">\r
1413                         <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
1414 available xtypes, see the Ex...</div>\r
1415             <div class="long">\r
1416                 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
1417 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1418 <pre><code>var t = <b>new</b> Ext.form.TextField();
1419 alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">\r
1420         <strong>Parameters:</strong>\r
1421         <ul><li>None.</li>        </ul>\r
1422         <strong>Returns:</strong>\r
1423         <ul>\r
1424             <li><code>String</code><div class="sub-desc">The xtype</div></li>\r
1425         </ul>\r
1426     </div>\r
1427                 </div>\r
1428                         </div>\r
1429         </td>\r
1430         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>\r
1431     </tr>\r
1432         <tr class="method-row inherited expandable">\r
1433         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1434         <td class="sig">\r
1435         <a id="Ext.Container-getXTypes"></a>\r
1436             <b>getXTypes</b>() : String            <div class="mdesc">\r
1437                         <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1438 available xtypes, see the Ext...</div>\r
1439             <div class="long">\r
1440                 <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1441 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
1442 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
1443 to participate in determination of inherited xtypes.</b></p>
1444 <p>Example usage:</p>
1445 <pre><code>\r
1446 var t = new Ext.form.TextField();\r
1447 alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">\r
1448         <strong>Parameters:</strong>\r
1449         <ul><li>None.</li>        </ul>\r
1450         <strong>Returns:</strong>\r
1451         <ul>\r
1452             <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>\r
1453         </ul>\r
1454     </div>\r
1455                 </div>\r
1456                         </div>\r
1457         </td>\r
1458         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>\r
1459     </tr>\r
1460         <tr class="method-row inherited alt expandable">\r
1461         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1462         <td class="sig">\r
1463         <a id="Ext.Container-hasListener"></a>\r
1464             <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">\r
1465                         <div class="short">Checks to see if this object has any listeners for a specified event</div>\r
1466             <div class="long">\r
1467                 Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">\r
1468         <strong>Parameters:</strong>\r
1469         <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>\r
1470         <strong>Returns:</strong>\r
1471         <ul>\r
1472             <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>\r
1473         </ul>\r
1474     </div>\r
1475                 </div>\r
1476                         </div>\r
1477         </td>\r
1478         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>\r
1479     </tr>\r
1480         <tr class="method-row inherited expandable">\r
1481         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1482         <td class="sig">\r
1483         <a id="Ext.Container-hide"></a>\r
1484             <b>hide</b>() : Ext.Component            <div class="mdesc">\r
1485                         <div class="short">Hide this component.</div>\r
1486             <div class="long">\r
1487                 Hide this component.    <div class="mdetail-params">\r
1488         <strong>Parameters:</strong>\r
1489         <ul><li>None.</li>        </ul>\r
1490         <strong>Returns:</strong>\r
1491         <ul>\r
1492             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1493         </ul>\r
1494     </div>\r
1495                 </div>\r
1496                         </div>\r
1497         </td>\r
1498         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>\r
1499     </tr>\r
1500         <tr class="method-row alt expandable">\r
1501         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1502         <td class="sig">\r
1503         <a id="Ext.Container-insert"></a>\r
1504             <b>insert</b>(&nbsp;<code>Number index</code>, <code>Ext.Component component</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1505                         <div class="short">Inserts a Component into this Container at a specified index. Fires the
1506 beforeadd event before inserting, then fires ...</div>\r
1507             <div class="long">\r
1508                 Inserts a Component into this Container at a specified index. Fires the
1509 <a ext:cls="Ext.Container" ext:member="beforeadd" href="output/Ext.Container.html#beforeadd">beforeadd</a> event before inserting, then fires the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> event after the
1510 Component has been inserted.    <div class="mdetail-params">\r
1511         <strong>Parameters:</strong>\r
1512         <ul><li><code>index</code> : Number<div class="sub-desc">The index at which the Component will be inserted
1513 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>
1514 Ext uses lazy rendering, and will only render the inserted Component should
1515 it become necessary.<br><br>
1516 A Component config object may be passed in order to avoid the overhead of
1517 constructing a real Component object if lazy rendering might mean that the
1518 inserted Component will not be rendered immediately. To take advantage of
1519 this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config
1520 property to the registered type of the Component wanted.<br><br>
1521 For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>\r
1522         <strong>Returns:</strong>\r
1523         <ul>\r
1524             <li><code>Ext.Component</code><div class="sub-desc">component The Component (or config object) that was inserted with the Container's default config values applied.</div></li>\r
1525         </ul>\r
1526     </div>\r
1527                 </div>\r
1528                         </div>\r
1529         </td>\r
1530         <td class="msource">Container</td>\r
1531     </tr>\r
1532         <tr class="method-row inherited expandable">\r
1533         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1534         <td class="sig">\r
1535         <a id="Ext.Container-isVisible"></a>\r
1536             <b>isVisible</b>() : void            <div class="mdesc">\r
1537                         <div class="short">Returns true if this component is visible.</div>\r
1538             <div class="long">\r
1539                 Returns true if this component is visible.    <div class="mdetail-params">\r
1540         <strong>Parameters:</strong>\r
1541         <ul><li>None.</li>        </ul>\r
1542         <strong>Returns:</strong>\r
1543         <ul>\r
1544             <li><code>void</code></li>\r
1545         </ul>\r
1546     </div>\r
1547                 </div>\r
1548                         </div>\r
1549         </td>\r
1550         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>\r
1551     </tr>\r
1552         <tr class="method-row inherited alt expandable">\r
1553         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1554         <td class="sig">\r
1555         <a id="Ext.Container-isXType"></a>\r
1556             <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1557                         <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1558 from th...</div>\r
1559             <div class="long">\r
1560                 <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1561 from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
1562 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
1563 to participate in determination of inherited xtypes.</b></p>
1564 <p>For a list of all available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
1565 <p>Example usage:</p>
1566 <pre><code>var t = <b>new</b> Ext.form.TextField();
1567 <b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
1568 <b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
1569 <b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">\r
1570         <strong>Parameters:</strong>\r
1571         <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
1572 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
1573         <strong>Returns:</strong>\r
1574         <ul>\r
1575             <li><code>void</code></li>\r
1576         </ul>\r
1577     </div>\r
1578                 </div>\r
1579                         </div>\r
1580         </td>\r
1581         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>\r
1582     </tr>\r
1583         <tr class="method-row inherited expandable">\r
1584         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1585         <td class="sig">\r
1586         <a id="Ext.Container-on"></a>\r
1587             <b>on</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1588                         <div class="short">Appends an event handler to this element (shorthand for addListener)</div>\r
1589             <div class="long">\r
1590                 Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">\r
1591         <strong>Parameters:</strong>\r
1592         <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
1593 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1594         <strong>Returns:</strong>\r
1595         <ul>\r
1596             <li><code>void</code></li>\r
1597         </ul>\r
1598     </div>\r
1599                 </div>\r
1600                         </div>\r
1601         </td>\r
1602         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>\r
1603     </tr>\r
1604         <tr class="method-row inherited alt expandable">\r
1605         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1606         <td class="sig">\r
1607         <a id="Ext.Container-purgeListeners"></a>\r
1608             <b>purgeListeners</b>() : void            <div class="mdesc">\r
1609                         <div class="short">Removes all listeners for this object</div>\r
1610             <div class="long">\r
1611                 Removes all listeners for this object    <div class="mdetail-params">\r
1612         <strong>Parameters:</strong>\r
1613         <ul><li>None.</li>        </ul>\r
1614         <strong>Returns:</strong>\r
1615         <ul>\r
1616             <li><code>void</code></li>\r
1617         </ul>\r
1618     </div>\r
1619                 </div>\r
1620                         </div>\r
1621         </td>\r
1622         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>\r
1623     </tr>\r
1624         <tr class="method-row inherited expandable">\r
1625         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1626         <td class="sig">\r
1627         <a id="Ext.Container-relayEvents"></a>\r
1628             <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">\r
1629                         <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>\r
1630             <div class="long">\r
1631                 Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">\r
1632         <strong>Parameters:</strong>\r
1633         <ul><li><code>o</code> : Object<div class="sub-desc">The Observable whose events this object is to relay.</div></li><li><code>events</code> : Array<div class="sub-desc">Array of event names to relay.</div></li>        </ul>\r
1634         <strong>Returns:</strong>\r
1635         <ul>\r
1636             <li><code>void</code></li>\r
1637         </ul>\r
1638     </div>\r
1639                 </div>\r
1640                         </div>\r
1641         </td>\r
1642         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>\r
1643     </tr>\r
1644         <tr class="method-row alt expandable">\r
1645         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1646         <td class="sig">\r
1647         <a id="Ext.Container-remove"></a>\r
1648             <b>remove</b>(&nbsp;<code>Component/String component</code>, <span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
1649                         <div class="short">Removes a component from this container.  Fires the beforeremove event before removing, then fires
1650 the remove event a...</div>\r
1651             <div class="long">\r
1652                 Removes a component from this container.  Fires the <a ext:cls="Ext.Container" ext:member="beforeremove" href="output/Ext.Container.html#beforeremove">beforeremove</a> event before removing, then fires
1653 the <a ext:cls="Ext.Container" ext:member="remove" href="output/Ext.Container.html#remove">remove</a> event after the component has been removed.    <div class="mdetail-params">\r
1654         <strong>Parameters:</strong>\r
1655         <ul><li><code>component</code> : Component/String<div class="sub-desc">The component reference or id to remove.</div></li><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
1656 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
1657         <strong>Returns:</strong>\r
1658         <ul>\r
1659             <li><code>Ext.Component</code><div class="sub-desc">component The Component that was removed.</div></li>\r
1660         </ul>\r
1661     </div>\r
1662                 </div>\r
1663                         </div>\r
1664         </td>\r
1665         <td class="msource">Container</td>\r
1666     </tr>\r
1667         <tr class="method-row expandable">\r
1668         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1669         <td class="sig">\r
1670         <a id="Ext.Container-removeAll"></a>\r
1671             <b>removeAll</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1672                         <div class="short">Removes all components from this container.</div>\r
1673             <div class="long">\r
1674                 Removes all components from this container.    <div class="mdetail-params">\r
1675         <strong>Parameters:</strong>\r
1676         <ul><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
1677 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
1678         <strong>Returns:</strong>\r
1679         <ul>\r
1680             <li><code>Array</code><div class="sub-desc">Array of the destroyed components</div></li>\r
1681         </ul>\r
1682     </div>\r
1683                 </div>\r
1684                         </div>\r
1685         </td>\r
1686         <td class="msource">Container</td>\r
1687     </tr>\r
1688         <tr class="method-row inherited alt expandable">\r
1689         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1690         <td class="sig">\r
1691         <a id="Ext.Container-removeClass"></a>\r
1692             <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
1693                         <div class="short">Removes a CSS class from the component's underlying element.</div>\r
1694             <div class="long">\r
1695                 Removes a CSS class from the component's underlying element.    <div class="mdetail-params">\r
1696         <strong>Parameters:</strong>\r
1697         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>\r
1698         <strong>Returns:</strong>\r
1699         <ul>\r
1700             <li><code>void</code></li>\r
1701         </ul>\r
1702     </div>\r
1703                 </div>\r
1704                         </div>\r
1705         </td>\r
1706         <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>\r
1707     </tr>\r
1708         <tr class="method-row inherited expandable">\r
1709         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1710         <td class="sig">\r
1711         <a id="Ext.Container-removeListener"></a>\r
1712             <b>removeListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1713                         <div class="short">Removes a listener</div>\r
1714             <div class="long">\r
1715                 Removes a listener    <div class="mdetail-params">\r
1716         <strong>Parameters:</strong>\r
1717         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
1718         <strong>Returns:</strong>\r
1719         <ul>\r
1720             <li><code>void</code></li>\r
1721         </ul>\r
1722     </div>\r
1723                 </div>\r
1724                         </div>\r
1725         </td>\r
1726         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>\r
1727     </tr>\r
1728         <tr class="method-row inherited alt expandable">\r
1729         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1730         <td class="sig">\r
1731         <a id="Ext.Container-render"></a>\r
1732             <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Element/HTMLElement/String container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1733                         <div class="short">Render this Component into the passed HTML element.
1734 If you are using a Container object to house this Component, then...</div>\r
1735             <div class="long">\r
1736                 <p>Render this Component into the passed HTML element.</p>
1737 <p><b>If you are using a <a ext:cls="Ext.Container" href="output/Ext.Container.html">Container</a> object to house this Component, then
1738 do not use the render method.</b></p>
1739 <p>A Container's child Components are rendered by that Container's
1740 <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when the Container is first rendered.</p>
1741 <p>Certain layout managers allow dynamic addition of child components. Those that do
1742 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
1743 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
1744 <p>If the Container is already rendered when a new child Component is added, you may need to call
1745 the Container's <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any
1746 unrendered child Components to be rendered. This is required so that you can add multiple
1747 child components if needed while only refreshing the layout once.</p>
1748 <p>When creating complex UIs, it is important to remember that sizing and positioning
1749 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager.
1750 If you expect child items to be sized in response to user interactions, you must
1751 configure the Container with a layout manager which creates and manages the type of layout you
1752 have in mind.</p>
1753 <p><b>Omitting the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic
1754 layout manager is used which does nothing but render child components sequentially into the
1755 Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
1756         <strong>Parameters:</strong>\r
1757         <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
1758 rendered into. If it is being created from existing markup, this should be omitted.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
1759 which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>\r
1760         <strong>Returns:</strong>\r
1761         <ul>\r
1762             <li><code>void</code></li>\r
1763         </ul>\r
1764     </div>\r
1765                 </div>\r
1766                         </div>\r
1767         </td>\r
1768         <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>\r
1769     </tr>\r
1770         <tr class="method-row inherited expandable">\r
1771         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1772         <td class="sig">\r
1773         <a id="Ext.Container-resumeEvents"></a>\r
1774             <b>resumeEvents</b>() : void            <div class="mdesc">\r
1775                         <div class="short">Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)</div>\r
1776             <div class="long">\r
1777                 Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)    <div class="mdetail-params">\r
1778         <strong>Parameters:</strong>\r
1779         <ul><li>None.</li>        </ul>\r
1780         <strong>Returns:</strong>\r
1781         <ul>\r
1782             <li><code>void</code></li>\r
1783         </ul>\r
1784     </div>\r
1785                 </div>\r
1786                         </div>\r
1787         </td>\r
1788         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>\r
1789     </tr>\r
1790         <tr class="method-row inherited alt expandable">\r
1791         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1792         <td class="sig">\r
1793         <a id="Ext.Container-setDisabled"></a>\r
1794             <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">\r
1795                         <div class="short">Convenience function for setting disabled/enabled by boolean.</div>\r
1796             <div class="long">\r
1797                 Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">\r
1798         <strong>Parameters:</strong>\r
1799         <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>\r
1800         <strong>Returns:</strong>\r
1801         <ul>\r
1802             <li><code>void</code></li>\r
1803         </ul>\r
1804     </div>\r
1805                 </div>\r
1806                         </div>\r
1807         </td>\r
1808         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>\r
1809     </tr>\r
1810         <tr class="method-row inherited expandable">\r
1811         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1812         <td class="sig">\r
1813         <a id="Ext.Container-setHeight"></a>\r
1814             <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1815                         <div class="short">Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
1816             <div class="long">\r
1817                 Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
1818         <strong>Parameters:</strong>\r
1819         <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>\r
1820         <strong>Returns:</strong>\r
1821         <ul>\r
1822             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1823         </ul>\r
1824     </div>\r
1825                 </div>\r
1826                         </div>\r
1827         </td>\r
1828         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>\r
1829     </tr>\r
1830         <tr class="method-row inherited alt expandable">\r
1831         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1832         <td class="sig">\r
1833         <a id="Ext.Container-setPagePosition"></a>\r
1834             <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1835                         <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
1836 This method fires the ...</div>\r
1837             <div class="long">\r
1838                 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>.
1839 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
1840         <strong>Parameters:</strong>\r
1841         <ul><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
1842         <strong>Returns:</strong>\r
1843         <ul>\r
1844             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1845         </ul>\r
1846     </div>\r
1847                 </div>\r
1848                         </div>\r
1849         </td>\r
1850         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>\r
1851     </tr>\r
1852         <tr class="method-row inherited expandable">\r
1853         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1854         <td class="sig">\r
1855         <a id="Ext.Container-setPosition"></a>\r
1856             <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1857                         <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
1858 This method fires ...</div>\r
1859             <div class="long">\r
1860                 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>.
1861 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
1862         <strong>Parameters:</strong>\r
1863         <ul><li><code>left</code> : Number<div class="sub-desc">The new left</div></li><li><code>top</code> : Number<div class="sub-desc">The new top</div></li>        </ul>\r
1864         <strong>Returns:</strong>\r
1865         <ul>\r
1866             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1867         </ul>\r
1868     </div>\r
1869                 </div>\r
1870                         </div>\r
1871         </td>\r
1872         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>\r
1873     </tr>\r
1874         <tr class="method-row inherited alt expandable">\r
1875         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1876         <td class="sig">\r
1877         <a id="Ext.Container-setSize"></a>\r
1878             <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1879                         <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
1880 either width...</div>\r
1881             <div class="long">\r
1882                 Sets the width and height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.  This method can accept
1883 either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">\r
1884         <strong>Parameters:</strong>\r
1885         <ul><li><code>width</code> : Number/Object<div class="sub-desc">The new width to set, or a size object in the format {width, height}</div></li><li><code>height</code> : Number<div class="sub-desc">The new height to set (not required if a size object is passed as the first arg)</div></li>        </ul>\r
1886         <strong>Returns:</strong>\r
1887         <ul>\r
1888             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1889         </ul>\r
1890     </div>\r
1891                 </div>\r
1892                         </div>\r
1893         </td>\r
1894         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>\r
1895     </tr>\r
1896         <tr class="method-row inherited expandable">\r
1897         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1898         <td class="sig">\r
1899         <a id="Ext.Container-setVisible"></a>\r
1900             <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1901                         <div class="short">Convenience function to hide or show this component by boolean.</div>\r
1902             <div class="long">\r
1903                 Convenience function to hide or show this component by boolean.    <div class="mdetail-params">\r
1904         <strong>Parameters:</strong>\r
1905         <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>\r
1906         <strong>Returns:</strong>\r
1907         <ul>\r
1908             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1909         </ul>\r
1910     </div>\r
1911                 </div>\r
1912                         </div>\r
1913         </td>\r
1914         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>\r
1915     </tr>\r
1916         <tr class="method-row inherited alt expandable">\r
1917         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1918         <td class="sig">\r
1919         <a id="Ext.Container-setWidth"></a>\r
1920             <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1921                         <div class="short">Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
1922             <div class="long">\r
1923                 Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
1924         <strong>Parameters:</strong>\r
1925         <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>\r
1926         <strong>Returns:</strong>\r
1927         <ul>\r
1928             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1929         </ul>\r
1930     </div>\r
1931                 </div>\r
1932                         </div>\r
1933         </td>\r
1934         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>\r
1935     </tr>\r
1936         <tr class="method-row inherited expandable">\r
1937         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1938         <td class="sig">\r
1939         <a id="Ext.Container-show"></a>\r
1940             <b>show</b>() : Ext.Component            <div class="mdesc">\r
1941                         <div class="short">Show this component.</div>\r
1942             <div class="long">\r
1943                 Show this component.    <div class="mdetail-params">\r
1944         <strong>Parameters:</strong>\r
1945         <ul><li>None.</li>        </ul>\r
1946         <strong>Returns:</strong>\r
1947         <ul>\r
1948             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1949         </ul>\r
1950     </div>\r
1951                 </div>\r
1952                         </div>\r
1953         </td>\r
1954         <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>\r
1955     </tr>\r
1956         <tr class="method-row inherited alt expandable">\r
1957         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1958         <td class="sig">\r
1959         <a id="Ext.Container-suspendEvents"></a>\r
1960             <b>suspendEvents</b>() : void            <div class="mdesc">\r
1961                         <div class="short">Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)</div>\r
1962             <div class="long">\r
1963                 Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)    <div class="mdetail-params">\r
1964         <strong>Parameters:</strong>\r
1965         <ul><li>None.</li>        </ul>\r
1966         <strong>Returns:</strong>\r
1967         <ul>\r
1968             <li><code>void</code></li>\r
1969         </ul>\r
1970     </div>\r
1971                 </div>\r
1972                         </div>\r
1973         </td>\r
1974         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>\r
1975     </tr>\r
1976         <tr class="method-row inherited expandable">\r
1977         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1978         <td class="sig">\r
1979         <a id="Ext.Container-syncSize"></a>\r
1980             <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">\r
1981                         <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>\r
1982             <div class="long">\r
1983                 Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">\r
1984         <strong>Parameters:</strong>\r
1985         <ul><li>None.</li>        </ul>\r
1986         <strong>Returns:</strong>\r
1987         <ul>\r
1988             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1989         </ul>\r
1990     </div>\r
1991                 </div>\r
1992                         </div>\r
1993         </td>\r
1994         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>\r
1995     </tr>\r
1996         <tr class="method-row inherited alt expandable">\r
1997         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1998         <td class="sig">\r
1999         <a id="Ext.Container-un"></a>\r
2000             <b>un</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2001                         <div class="short">Removes a listener (shorthand for removeListener)</div>\r
2002             <div class="long">\r
2003                 Removes a listener (shorthand for removeListener)    <div class="mdetail-params">\r
2004         <strong>Parameters:</strong>\r
2005         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
2006         <strong>Returns:</strong>\r
2007         <ul>\r
2008             <li><code>void</code></li>\r
2009         </ul>\r
2010     </div>\r
2011                 </div>\r
2012                         </div>\r
2013         </td>\r
2014         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>\r
2015     </tr>\r
2016         <tr class="method-row inherited expandable">\r
2017         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2018         <td class="sig">\r
2019         <a id="Ext.Container-updateBox"></a>\r
2020             <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2021                         <div class="short">Sets the current box measurements of the component's underlying element.</div>\r
2022             <div class="long">\r
2023                 Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
2024         <strong>Parameters:</strong>\r
2025         <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>\r
2026         <strong>Returns:</strong>\r
2027         <ul>\r
2028             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2029         </ul>\r
2030     </div>\r
2031                 </div>\r
2032                         </div>\r
2033         </td>\r
2034         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>\r
2035     </tr>\r
2036             </table>
2037                 <a id="Ext.Container-events"></a>
2038         <h2>Public Events</h2>
2039                 <table cellspacing="0" class="member-table">
2040             <tr>
2041                 <th class="sig-header" colspan="2">Event</th>
2042                 <th class="msource-header">Defined By</th>
2043             </tr>
2044                 <tr class="event-row expandable">\r
2045         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2046         <td class="sig">\r
2047         <a id="Ext.Container-add"></a>\r
2048             <b>add</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
2049                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.</div>\r
2050             <div class="long">\r
2051                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.    <div class="mdetail-params">\r
2052         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2053         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component was added to the container's items collection</div></li>        </ul>\r
2054     </div>\r
2055                 </div>\r
2056                         </div>\r
2057         </td>\r
2058         <td class="msource">Container</td>\r
2059     </tr>\r
2060         <tr class="event-row alt expandable">\r
2061         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2062         <td class="sig">\r
2063         <a id="Ext.Container-afterlayout"></a>\r
2064             <b>afterlayout</b> : (&nbsp;<code>Ext.Container this</code>, <code>ContainerLayout layout</code>&nbsp;)            <div class="mdesc">\r
2065                         <div class="short">Fires when the components in this container are arranged by the associated layout manager.</div>\r
2066             <div class="long">\r
2067                 Fires when the components in this container are arranged by the associated layout manager.    <div class="mdetail-params">\r
2068         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2069         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>layout</code> : ContainerLayout<div class="sub-desc">The ContainerLayout implementation for this container</div></li>        </ul>\r
2070     </div>\r
2071                 </div>\r
2072                         </div>\r
2073         </td>\r
2074         <td class="msource">Container</td>\r
2075     </tr>\r
2076         <tr class="event-row expandable">\r
2077         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2078         <td class="sig">\r
2079         <a id="Ext.Container-beforeadd"></a>\r
2080             <b>beforeadd</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
2081                         <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.
2082 A handler can return false to cancel the add.</div>\r
2083             <div class="long">\r
2084                 Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
2085 A handler can return false to cancel the add.    <div class="mdetail-params">\r
2086         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2087         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component will be added to the container's items collection</div></li>        </ul>\r
2088     </div>\r
2089                 </div>\r
2090                         </div>\r
2091         </td>\r
2092         <td class="msource">Container</td>\r
2093     </tr>\r
2094         <tr class="event-row inherited alt expandable">\r
2095         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2096         <td class="sig">\r
2097         <a id="Ext.Container-beforedestroy"></a>\r
2098             <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2099                         <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>\r
2100             <div class="long">\r
2101                 Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">\r
2102         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2103         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2104     </div>\r
2105                 </div>\r
2106                         </div>\r
2107         </td>\r
2108         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>\r
2109     </tr>\r
2110         <tr class="event-row inherited expandable">\r
2111         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2112         <td class="sig">\r
2113         <a id="Ext.Container-beforehide"></a>\r
2114             <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2115                         <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>\r
2116             <div class="long">\r
2117                 Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">\r
2118         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2119         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2120     </div>\r
2121                 </div>\r
2122                         </div>\r
2123         </td>\r
2124         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>\r
2125     </tr>\r
2126         <tr class="event-row alt expandable">\r
2127         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2128         <td class="sig">\r
2129         <a id="Ext.Container-beforeremove"></a>\r
2130             <b>beforeremove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
2131                         <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
2132 false to cancel the remove.</div>\r
2133             <div class="long">\r
2134                 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
2135 false to cancel the remove.    <div class="mdetail-params">\r
2136         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2137         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being removed</div></li>        </ul>\r
2138     </div>\r
2139                 </div>\r
2140                         </div>\r
2141         </td>\r
2142         <td class="msource">Container</td>\r
2143     </tr>\r
2144         <tr class="event-row inherited expandable">\r
2145         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2146         <td class="sig">\r
2147         <a id="Ext.Container-beforerender"></a>\r
2148             <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2149                         <div class="short">Fires before the component is rendered. Return false to stop the render.</div>\r
2150             <div class="long">\r
2151                 Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">\r
2152         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2153         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2154     </div>\r
2155                 </div>\r
2156                         </div>\r
2157         </td>\r
2158         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>\r
2159     </tr>\r
2160         <tr class="event-row inherited alt expandable">\r
2161         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2162         <td class="sig">\r
2163         <a id="Ext.Container-beforeshow"></a>\r
2164             <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2165                         <div class="short">Fires before the component is shown. Return false to stop the show.</div>\r
2166             <div class="long">\r
2167                 Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">\r
2168         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2169         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2170     </div>\r
2171                 </div>\r
2172                         </div>\r
2173         </td>\r
2174         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>\r
2175     </tr>\r
2176         <tr class="event-row inherited expandable">\r
2177         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2178         <td class="sig">\r
2179         <a id="Ext.Container-beforestaterestore"></a>\r
2180             <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2181                         <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>\r
2182             <div class="long">\r
2183                 Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">\r
2184         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2185         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2186     </div>\r
2187                 </div>\r
2188                         </div>\r
2189         </td>\r
2190         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>\r
2191     </tr>\r
2192         <tr class="event-row inherited alt expandable">\r
2193         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2194         <td class="sig">\r
2195         <a id="Ext.Container-beforestatesave"></a>\r
2196             <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2197                         <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>\r
2198             <div class="long">\r
2199                 Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">\r
2200         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2201         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2202     </div>\r
2203                 </div>\r
2204                         </div>\r
2205         </td>\r
2206         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>\r
2207     </tr>\r
2208         <tr class="event-row inherited expandable">\r
2209         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2210         <td class="sig">\r
2211         <a id="Ext.Container-destroy"></a>\r
2212             <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2213                         <div class="short">Fires after the component is destroyed.</div>\r
2214             <div class="long">\r
2215                 Fires after the component is destroyed.    <div class="mdetail-params">\r
2216         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2217         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2218     </div>\r
2219                 </div>\r
2220                         </div>\r
2221         </td>\r
2222         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>\r
2223     </tr>\r
2224         <tr class="event-row inherited alt expandable">\r
2225         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2226         <td class="sig">\r
2227         <a id="Ext.Container-disable"></a>\r
2228             <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2229                         <div class="short">Fires after the component is disabled.</div>\r
2230             <div class="long">\r
2231                 Fires after the component is disabled.    <div class="mdetail-params">\r
2232         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2233         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2234     </div>\r
2235                 </div>\r
2236                         </div>\r
2237         </td>\r
2238         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>\r
2239     </tr>\r
2240         <tr class="event-row inherited expandable">\r
2241         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2242         <td class="sig">\r
2243         <a id="Ext.Container-enable"></a>\r
2244             <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2245                         <div class="short">Fires after the component is enabled.</div>\r
2246             <div class="long">\r
2247                 Fires after the component is enabled.    <div class="mdetail-params">\r
2248         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2249         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2250     </div>\r
2251                 </div>\r
2252                         </div>\r
2253         </td>\r
2254         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>\r
2255     </tr>\r
2256         <tr class="event-row inherited alt expandable">\r
2257         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2258         <td class="sig">\r
2259         <a id="Ext.Container-hide"></a>\r
2260             <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2261                         <div class="short">Fires after the component is hidden.</div>\r
2262             <div class="long">\r
2263                 Fires after the component is hidden.    <div class="mdetail-params">\r
2264         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2265         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2266     </div>\r
2267                 </div>\r
2268                         </div>\r
2269         </td>\r
2270         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>\r
2271     </tr>\r
2272         <tr class="event-row inherited expandable">\r
2273         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2274         <td class="sig">\r
2275         <a id="Ext.Container-move"></a>\r
2276             <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">\r
2277                         <div class="short">Fires after the component is moved.</div>\r
2278             <div class="long">\r
2279                 Fires after the component is moved.    <div class="mdetail-params">\r
2280         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2281         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
2282     </div>\r
2283                 </div>\r
2284                         </div>\r
2285         </td>\r
2286         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>\r
2287     </tr>\r
2288         <tr class="event-row alt expandable">\r
2289         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2290         <td class="sig">\r
2291         <a id="Ext.Container-remove"></a>\r
2292             <b>remove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
2293                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.</div>\r
2294             <div class="long">\r
2295                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.    <div class="mdetail-params">\r
2296         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2297         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was removed</div></li>        </ul>\r
2298     </div>\r
2299                 </div>\r
2300                         </div>\r
2301         </td>\r
2302         <td class="msource">Container</td>\r
2303     </tr>\r
2304         <tr class="event-row inherited expandable">\r
2305         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2306         <td class="sig">\r
2307         <a id="Ext.Container-render"></a>\r
2308             <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2309                         <div class="short">Fires after the component is rendered.</div>\r
2310             <div class="long">\r
2311                 Fires after the component is rendered.    <div class="mdetail-params">\r
2312         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2313         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2314     </div>\r
2315                 </div>\r
2316                         </div>\r
2317         </td>\r
2318         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>\r
2319     </tr>\r
2320         <tr class="event-row inherited alt expandable">\r
2321         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2322         <td class="sig">\r
2323         <a id="Ext.Container-resize"></a>\r
2324             <b>resize</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number adjWidth</code>, <code>Number adjHeight</code>, <code>Number rawWidth</code>, <code>Number rawHeight</code>&nbsp;)            <div class="mdesc">\r
2325                         <div class="short">Fires after the component is resized.</div>\r
2326             <div class="long">\r
2327                 Fires after the component is resized.    <div class="mdetail-params">\r
2328         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2329         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>adjWidth</code> : Number<div class="sub-desc">The box-adjusted width that was set</div></li><li><code>adjHeight</code> : Number<div class="sub-desc">The box-adjusted height that was set</div></li><li><code>rawWidth</code> : Number<div class="sub-desc">The width that was originally specified</div></li><li><code>rawHeight</code> : Number<div class="sub-desc">The height that was originally specified</div></li>        </ul>\r
2330     </div>\r
2331                 </div>\r
2332                         </div>\r
2333         </td>\r
2334         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>\r
2335     </tr>\r
2336         <tr class="event-row inherited expandable">\r
2337         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2338         <td class="sig">\r
2339         <a id="Ext.Container-show"></a>\r
2340             <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2341                         <div class="short">Fires after the component is shown.</div>\r
2342             <div class="long">\r
2343                 Fires after the component is shown.    <div class="mdetail-params">\r
2344         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2345         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2346     </div>\r
2347                 </div>\r
2348                         </div>\r
2349         </td>\r
2350         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>\r
2351     </tr>\r
2352         <tr class="event-row inherited alt expandable">\r
2353         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2354         <td class="sig">\r
2355         <a id="Ext.Container-staterestore"></a>\r
2356             <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2357                         <div class="short">Fires after the state of the component is restored.</div>\r
2358             <div class="long">\r
2359                 Fires after the state of the component is restored.    <div class="mdetail-params">\r
2360         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2361         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2362     </div>\r
2363                 </div>\r
2364                         </div>\r
2365         </td>\r
2366         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>\r
2367     </tr>\r
2368         <tr class="event-row inherited expandable">\r
2369         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2370         <td class="sig">\r
2371         <a id="Ext.Container-statesave"></a>\r
2372             <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2373                         <div class="short">Fires after the state of the component is saved to the configured state provider.</div>\r
2374             <div class="long">\r
2375                 Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">\r
2376         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2377         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2378     </div>\r
2379                 </div>\r
2380                         </div>\r
2381         </td>\r
2382         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>\r
2383     </tr>\r
2384             </table>
2385         
2386         </div>