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

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

lib/:

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