source: trunk/web/addons/job_monarch/lib/extjs/docs/output/Ext.form.FormPanel.html @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

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