Subversion Repositories eFlore/Applications.cel

Rev

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

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