Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
2 aperonnet 1
        <div class="body-wrap">
2
        <div class="top-tools">
3
            <a class="inner-link" href="#Ext.ProgressBar-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4
            <a class="inner-link" href="#Ext.ProgressBar-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5
            <a class="inner-link" href="#Ext.ProgressBar-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6
                            <a class="inner-link" href="#Ext.ProgressBar-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7
                        <a class="bookmark" href="../docs/?class=Ext.ProgressBar"><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"/>ProgressBar</pre></div>
14
                <h1>Class Ext.ProgressBar</h1>
15
        <table cellspacing="0">
16
            <tr><td class="label">Package:</td><td class="hd-info">Ext</td></tr>
17
            <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../source/widgets/ProgressBar.js" target="_blank">ProgressBar.js</a></td></tr>
18
            <tr><td class="label">Class:</td><td class="hd-info">ProgressBar</td></tr>
19
                                    <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.BoxComponent" ext:member="" href="output/Ext.BoxComponent.html">BoxComponent</a></td></tr>
20
                    </table>
21
        <div class="description">
22
            <p>An updateable progress bar component.  The progress bar supports two different modes: manual and automatic.</p>
23
<p>In manual mode, you are responsible for showing, updating (via <a ext:cls="Ext.ProgressBar" ext:member="updateProgress" href="output/Ext.ProgressBar.html#updateProgress">updateProgress</a>) and clearing the
24
progress bar as needed from your own code.  This method is most appropriate when you want to show progress
25
throughout an operation that has predictable points of interest at which you can update the control.</p>
26
<p>In automatic mode, you simply call <a ext:cls="Ext.ProgressBar" ext:member="wait" href="output/Ext.ProgressBar.html#wait">wait</a> and let the progress bar run indefinitely, only clearing it
27
once the operation is complete.  You can optionally have the progress bar wait for a specific amount of time
28
and then clear itself.  Automatic mode is most appropriate for timed operations or asymchronous operations in
29
which you have no need for indicating intermediate progress.</p>        </div>
30
 
31
        <div class="hr"></div>
32
                <a id="Ext.ProgressBar-configs"></a>
33
        <h2>Config Options</h2>
34
        <table cellspacing="0" class="member-table">
35
            <tr>
36
                <th class="sig-header" colspan="2">Config Options</th>
37
                <th class="msource-header">Defined By</th>
38
            </tr>
39
                <tr class="config-row inherited">
40
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
41
        <td class="sig">
42
        <a id="Ext.ProgressBar-allowDomMove"></a>
43
            <b>allowDomMove</b> : Boolean            <div class="mdesc">
44
                            Whether the component can move the Dom node when rendering (defaults to true).                        </div>
45
        </td>
46
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>
47
    </tr>
48
        <tr class="config-row inherited alt expandable">
49
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
50
        <td class="sig">
51
        <a id="Ext.ProgressBar-applyTo"></a>
52
            <b>applyTo</b> : Mixed            <div class="mdesc">
53
                        <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>
54
            <div class="long">
55
                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>
56
                        </div>
57
        </td>
58
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>
59
    </tr>
60
        <tr class="config-row inherited expandable">
61
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
62
        <td class="sig">
63
        <a id="Ext.ProgressBar-autoEl"></a>
64
            <b>autoEl</b> : String/Object            <div class="mdesc">
65
                        <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>
66
            <div class="long">
67
                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>}
68
{xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>
69
                        </div>
70
        </td>
71
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>
72
    </tr>
73
        <tr class="config-row inherited alt expandable">
74
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
75
        <td class="sig">
76
        <a id="Ext.ProgressBar-autoHeight"></a>
77
            <b>autoHeight</b> : Boolean            <div class="mdesc">
78
                        <div class="short">True to use height:'auto', false to use fixed height. Note: although many components inherit this config option, not ...</div>
79
            <div class="long">
80
                True to use height:'auto', false to use fixed height. Note: although many components inherit this config option, not all will function as expected with a height of 'auto'. (defaults to false).            </div>
81
                        </div>
82
        </td>
83
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>
84
    </tr>
85
        <tr class="config-row inherited expandable">
86
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
87
        <td class="sig">
88
        <a id="Ext.ProgressBar-autoShow"></a>
89
            <b>autoShow</b> : Boolean            <div class="mdesc">
90
                        <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>
91
            <div class="long">
92
                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>
93
                        </div>
94
        </td>
95
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>
96
    </tr>
97
        <tr class="config-row inherited alt expandable">
98
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
99
        <td class="sig">
100
        <a id="Ext.ProgressBar-autoWidth"></a>
101
            <b>autoWidth</b> : Boolean            <div class="mdesc">
102
                        <div class="short">True to use width:'auto', false to use fixed width. Note: although many components inherit this config option, not al...</div>
103
            <div class="long">
104
                True to use width:'auto', false to use fixed width. Note: although many components inherit this config option, not all will function as expected with a width of 'auto'. (defaults to false).            </div>
105
                        </div>
106
        </td>
107
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>
108
    </tr>
109
        <tr class="config-row">
110
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
111
        <td class="sig">
112
        <a id="Ext.ProgressBar-baseCls"></a>
113
            <b>baseCls</b> : String            <div class="mdesc">
114
                            The base CSS class to apply to the progress bar's wrapper element (defaults to 'x-progress')                        </div>
115
        </td>
116
        <td class="msource">ProgressBar</td>
117
    </tr>
118
        <tr class="config-row inherited alt expandable">
119
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
120
        <td class="sig">
121
        <a id="Ext.ProgressBar-cls"></a>
122
            <b>cls</b> : String            <div class="mdesc">
123
                        <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>
124
            <div class="long">
125
                An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>
126
                        </div>
127
        </td>
128
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>
129
    </tr>
130
        <tr class="config-row inherited expandable">
131
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
132
        <td class="sig">
133
        <a id="Ext.ProgressBar-ctCls"></a>
134
            <b>ctCls</b> : String            <div class="mdesc">
135
                        <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>
136
            <div class="long">
137
                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>
138
                        </div>
139
        </td>
140
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>
141
    </tr>
142
        <tr class="config-row inherited alt">
143
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
144
        <td class="sig">
145
        <a id="Ext.ProgressBar-disabledClass"></a>
146
            <b>disabledClass</b> : String            <div class="mdesc">
147
                            CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>
148
        </td>
149
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>
150
    </tr>
151
        <tr class="config-row inherited">
152
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
153
        <td class="sig">
154
        <a id="Ext.ProgressBar-height"></a>
155
            <b>height</b> : Number            <div class="mdesc">
156
                            The height of this component in pixels (defaults to auto).                        </div>
157
        </td>
158
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>
159
    </tr>
160
        <tr class="config-row inherited alt expandable">
161
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
162
        <td class="sig">
163
        <a id="Ext.ProgressBar-hideMode"></a>
164
            <b>hideMode</b> : String            <div class="mdesc">
165
                        <div class="short">How this component should hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset posi...</div>
166
            <div class="long">
167
                How this component should hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".            </div>
168
                        </div>
169
        </td>
170
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>
171
    </tr>
172
        <tr class="config-row inherited expandable">
173
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
174
        <td class="sig">
175
        <a id="Ext.ProgressBar-hideParent"></a>
176
            <b>hideParent</b> : Boolean            <div class="mdesc">
177
                        <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>
178
            <div class="long">
179
                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>
180
                        </div>
181
        </td>
182
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>
183
    </tr>
184
        <tr class="config-row alt">
185
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
186
        <td class="sig">
187
        <a id="Ext.ProgressBar-id"></a>
188
            <b>id</b> : String            <div class="mdesc">
189
                            The progress bar element's id (defaults to an auto-generated id)                        </div>
190
        </td>
191
        <td class="msource">ProgressBar</td>
192
    </tr>
193
        <tr class="config-row inherited expandable">
194
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
195
        <td class="sig">
196
        <a id="Ext.ProgressBar-listeners"></a>
197
            <b>listeners</b> : Object            <div class="mdesc">
198
                        <div class="short">A config object containing one or more event handlers to be added to this object during initialization. This should b...</div>
199
            <div class="long">
200
                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>
201
                        </div>
202
        </td>
203
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>
204
    </tr>
205
        <tr class="config-row inherited alt">
206
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
207
        <td class="sig">
208
        <a id="Ext.ProgressBar-pageX"></a>
209
            <b>pageX</b> : Number            <div class="mdesc">
210
                            The page level x coordinate for this component if contained within a positioning container.                        </div>
211
        </td>
212
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>
213
    </tr>
214
        <tr class="config-row inherited">
215
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
216
        <td class="sig">
217
        <a id="Ext.ProgressBar-pageY"></a>
218
            <b>pageY</b> : Number            <div class="mdesc">
219
                            The page level y coordinate for this component if contained within a positioning container.                        </div>
220
        </td>
221
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>
222
    </tr>
223
        <tr class="config-row inherited alt expandable">
224
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
225
        <td class="sig">
226
        <a id="Ext.ProgressBar-plugins"></a>
227
            <b>plugins</b> : Object/Array            <div class="mdesc">
228
                        <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>
229
            <div class="long">
230
                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>
231
                        </div>
232
        </td>
233
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>
234
    </tr>
235
        <tr class="config-row inherited expandable">
236
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
237
        <td class="sig">
238
        <a id="Ext.ProgressBar-renderTo"></a>
239
            <b>renderTo</b> : Mixed            <div class="mdesc">
240
                        <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>
241
            <div class="long">
242
                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>
243
                        </div>
244
        </td>
245
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>
246
    </tr>
247
        <tr class="config-row inherited alt expandable">
248
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
249
        <td class="sig">
250
        <a id="Ext.ProgressBar-stateEvents"></a>
251
            <b>stateEvents</b> : Array            <div class="mdesc">
252
                        <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>
253
            <div class="long">
254
                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>
255
                        </div>
256
        </td>
257
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>
258
    </tr>
259
        <tr class="config-row inherited expandable">
260
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
261
        <td class="sig">
262
        <a id="Ext.ProgressBar-stateId"></a>
263
            <b>stateId</b> : String            <div class="mdesc">
264
                        <div class="short">The unique id for this component to use for state management purposes (defaults to the component id). See stateful fo...</div>
265
            <div class="long">
266
                The unique id for this component to use for state management purposes (defaults to the component id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>
267
                        </div>
268
        </td>
269
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>
270
    </tr>
271
        <tr class="config-row inherited alt expandable">
272
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
273
        <td class="sig">
274
        <a id="Ext.ProgressBar-stateful"></a>
275
            <b>stateful</b> : Boolean            <div class="mdesc">
276
                        <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>
277
            <div class="long">
278
                A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="staterestore" href="output/staterestore.html">staterestore</a>, <a ext:cls="beforestatesave" href="output/beforestatesave.html">beforestatesave</a> and <a ext:cls="statesave" href="output/statesave.html">statesave</a> events</p>            </div>
279
                        </div>
280
        </td>
281
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>
282
    </tr>
283
        <tr class="config-row inherited expandable">
284
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
285
        <td class="sig">
286
        <a id="Ext.ProgressBar-style"></a>
287
            <b>style</b> : String            <div class="mdesc">
288
                        <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>
289
            <div class="long">
290
                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>
291
                        </div>
292
        </td>
293
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>
294
    </tr>
295
        <tr class="config-row alt">
296
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
297
        <td class="sig">
298
        <a id="Ext.ProgressBar-text"></a>
299
            <b>text</b> : String            <div class="mdesc">
300
                            The progress bar text (defaults to '')                        </div>
301
        </td>
302
        <td class="msource">ProgressBar</td>
303
    </tr>
304
        <tr class="config-row">
305
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
306
        <td class="sig">
307
        <a id="Ext.ProgressBar-textEl"></a>
308
            <b>textEl</b> : Mixed            <div class="mdesc">
309
                            The element to render the progress text to (defaults to the progress bar's internal text element)                        </div>
310
        </td>
311
        <td class="msource">ProgressBar</td>
312
    </tr>
313
        <tr class="config-row alt">
314
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
315
        <td class="sig">
316
        <a id="Ext.ProgressBar-value"></a>
317
            <b>value</b> : Float            <div class="mdesc">
318
                            A floating point value between 0 and 1 (e.g., .5, defaults to 0)                        </div>
319
        </td>
320
        <td class="msource">ProgressBar</td>
321
    </tr>
322
        <tr class="config-row inherited">
323
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
324
        <td class="sig">
325
        <a id="Ext.ProgressBar-width"></a>
326
            <b>width</b> : Number            <div class="mdesc">
327
                            The width of this component in pixels (defaults to auto).                        </div>
328
        </td>
329
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>
330
    </tr>
331
        <tr class="config-row inherited alt">
332
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
333
        <td class="sig">
334
        <a id="Ext.ProgressBar-x"></a>
335
            <b>x</b> : Number            <div class="mdesc">
336
                            The local x (left) coordinate for this component if contained within a positioning container.                        </div>
337
        </td>
338
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>
339
    </tr>
340
        <tr class="config-row inherited expandable">
341
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
342
        <td class="sig">
343
        <a id="Ext.ProgressBar-xtype"></a>
344
            <b>xtype</b> : String            <div class="mdesc">
345
                        <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>
346
            <div class="long">
347
                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>
348
                        </div>
349
        </td>
350
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>
351
    </tr>
352
        <tr class="config-row inherited alt">
353
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
354
        <td class="sig">
355
        <a id="Ext.ProgressBar-y"></a>
356
            <b>y</b> : Number            <div class="mdesc">
357
                            The local y (top) coordinate for this component if contained within a positioning container.                        </div>
358
        </td>
359
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>
360
    </tr>
361
            </table>
362
                <a id="Ext.ProgressBar-props"></a>
363
        <h2>Public Properties</h2>
364
                <table cellspacing="0" class="member-table">
365
            <tr>
366
                <th class="sig-header" colspan="2">Property</th>
367
                <th class="msource-header">Defined By</th>
368
            </tr>
369
                <tr class="property-row inherited">
370
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
371
        <td class="sig">
372
        <a id="Ext.ProgressBar-disabled"></a>
373
            <b>disabled</b> : Boolean            <div class="mdesc">
374
                            True if this component is disabled. Read-only.                        </div>
375
        </td>
376
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
377
    </tr>
378
        <tr class="property-row inherited alt">
379
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
380
        <td class="sig">
381
        <a id="Ext.ProgressBar-hidden"></a>
382
            <b>hidden</b> : Boolean            <div class="mdesc">
383
 
384
True if this component is hidden. Read-only.                        </div>
385
        </td>
386
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
387
    </tr>
388
        <tr class="property-row inherited">
389
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
390
        <td class="sig">
391
        <a id="Ext.ProgressBar-initialConfig"></a>
392
            <b>initialConfig</b> : Object            <div class="mdesc">
393
                            This Component's initial configuration specification. Read-only.                        </div>
394
        </td>
395
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>
396
    </tr>
397
        <tr class="property-row inherited alt expandable">
398
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
399
        <td class="sig">
400
        <a id="Ext.ProgressBar-ownerCt"></a>
401
            <b>ownerCt</b> : Ext.Container            <div class="mdesc">
402
                        <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
403
the component is added to a...</div>
404
            <div class="long">
405
                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
406
the component is added to a container).  Read-only.            </div>
407
                        </div>
408
        </td>
409
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>
410
    </tr>
411
        <tr class="property-row inherited">
412
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
413
        <td class="sig">
414
        <a id="Ext.ProgressBar-rendered"></a>
415
            <b>rendered</b> : Boolean            <div class="mdesc">
416
                            True if this component has been rendered. Read-only.                        </div>
417
        </td>
418
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>
419
    </tr>
420
            </table>
421
                <a id="Ext.ProgressBar-methods"></a>
422
        <h2>Public Methods</h2>
423
                <table cellspacing="0" class="member-table">
424
            <tr>
425
                <th class="sig-header" colspan="2">Method</th>
426
                <th class="msource-header">Defined By</th>
427
            </tr>
428
                <tr class="method-row inherited expandable">
429
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
430
        <td class="sig">
431
        <a id="Ext.ProgressBar-addClass"></a>
432
            <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
433
                        <div class="short">Adds a CSS class to the component's underlying element.</div>
434
            <div class="long">
435
                Adds a CSS class to the component's underlying element.    <div class="mdetail-params">
436
        <strong>Parameters:</strong>
437
        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>
438
        <strong>Returns:</strong>
439
        <ul>
440
            <li><code>void</code></li>
441
        </ul>
442
    </div>
443
                </div>
444
                        </div>
445
        </td>
446
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>
447
    </tr>
448
        <tr class="method-row inherited alt expandable">
449
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
450
        <td class="sig">
451
        <a id="Ext.ProgressBar-addEvents"></a>
452
            <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">
453
                        <div class="short">Used to define events on this Observable</div>
454
            <div class="long">
455
                Used to define events on this Observable    <div class="mdetail-params">
456
        <strong>Parameters:</strong>
457
        <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>
458
        <strong>Returns:</strong>
459
        <ul>
460
            <li><code>void</code></li>
461
        </ul>
462
    </div>
463
                </div>
464
                        </div>
465
        </td>
466
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>
467
    </tr>
468
        <tr class="method-row inherited expandable">
469
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
470
        <td class="sig">
471
        <a id="Ext.ProgressBar-addListener"></a>
472
            <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">
473
                        <div class="short">Appends an event handler to this component</div>
474
            <div class="long">
475
                Appends an event handler to this component    <div class="mdetail-params">
476
        <strong>Parameters:</strong>
477
        <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
478
function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
479
properties. This may contain any of the following properties:<ul>
480
<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>
481
<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>
482
<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>
483
<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
484
by the specified number of milliseconds. If the event fires again within that time, the original
485
handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
486
</ul><br>
487
<p>
488
<b>Combining Options</b><br>
489
Using the options argument, it is possible to combine different types of listeners:<br>
490
<br>
491
A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
492
<pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
493
    single: true,
494
    delay: 100,
495
    forumId: 4
496
});</code></pre>
497
<p>
498
<b>Attaching multiple handlers in 1 call</b><br>
499
The method also allows for a single argument to be passed which is a config object containing properties
500
which specify multiple handlers.
501
<p>
502
<pre><code>foo.on({
503
    <em>'click'</em> : {
504
        fn: <b>this</b>.onClick,
505
        scope: <b>this</b>,
506
        delay: 100
507
    },
508
    <em>'mouseover'</em> : {
509
        fn: <b>this</b>.onMouseOver,
510
        scope: <b>this</b>
511
    },
512
    <em>'mouseout'</em> : {
513
        fn: <b>this</b>.onMouseOut,
514
        scope: <b>this</b>
515
    }
516
});</code></pre>
517
<p>
518
Or a shorthand syntax:<br>
519
<pre><code>foo.on({
520
    <em>'click'</em> : <b>this</b>.onClick,
521
    <em>'mouseover'</em> : <b>this</b>.onMouseOver,
522
    <em>'mouseout'</em> : <b>this</b>.onMouseOut,
523
     scope: <b>this</b>
524
});</code></pre></div></li>        </ul>
525
        <strong>Returns:</strong>
526
        <ul>
527
            <li><code>void</code></li>
528
        </ul>
529
    </div>
530
                </div>
531
                        </div>
532
        </td>
533
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>
534
    </tr>
535
        <tr class="method-row inherited alt expandable">
536
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
537
        <td class="sig">
538
        <a id="Ext.ProgressBar-applyToMarkup"></a>
539
            <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">
540
                        <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>
541
            <div class="long">
542
                Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">
543
        <strong>Parameters:</strong>
544
        <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>
545
        <strong>Returns:</strong>
546
        <ul>
547
            <li><code>void</code></li>
548
        </ul>
549
    </div>
550
                </div>
551
                        </div>
552
        </td>
553
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>
554
    </tr>
555
        <tr class="method-row inherited expandable">
556
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
557
        <td class="sig">
558
        <a id="Ext.ProgressBar-cloneConfig"></a>
559
            <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">
560
                        <div class="short">Clone the current component using the original config values passed into this instance by default.</div>
561
            <div class="long">
562
                Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">
563
        <strong>Parameters:</strong>
564
        <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
565
An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>
566
        <strong>Returns:</strong>
567
        <ul>
568
            <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>
569
        </ul>
570
    </div>
571
                </div>
572
                        </div>
573
        </td>
574
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>
575
    </tr>
576
        <tr class="method-row inherited alt expandable">
577
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
578
        <td class="sig">
579
        <a id="Ext.ProgressBar-destroy"></a>
580
            <b>destroy</b>() : void            <div class="mdesc">
581
                        <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
582
removing the c...</div>
583
            <div class="long">
584
                Destroys this component by purging any event listeners, removing the component's element from the DOM,
585
removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
586
<a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
587
should usually not need to be called directly.    <div class="mdetail-params">
588
        <strong>Parameters:</strong>
589
        <ul><li>None.</li>        </ul>
590
        <strong>Returns:</strong>
591
        <ul>
592
            <li><code>void</code></li>
593
        </ul>
594
    </div>
595
                </div>
596
                        </div>
597
        </td>
598
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>
599
    </tr>
600
        <tr class="method-row inherited expandable">
601
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
602
        <td class="sig">
603
        <a id="Ext.ProgressBar-disable"></a>
604
            <b>disable</b>() : Ext.Component            <div class="mdesc">
605
                        <div class="short">Disable this component.</div>
606
            <div class="long">
607
                Disable this component.    <div class="mdetail-params">
608
        <strong>Parameters:</strong>
609
        <ul><li>None.</li>        </ul>
610
        <strong>Returns:</strong>
611
        <ul>
612
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
613
        </ul>
614
    </div>
615
                </div>
616
                        </div>
617
        </td>
618
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>
619
    </tr>
620
        <tr class="method-row inherited alt expandable">
621
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
622
        <td class="sig">
623
        <a id="Ext.ProgressBar-enable"></a>
624
            <b>enable</b>() : Ext.Component            <div class="mdesc">
625
                        <div class="short">Enable this component.</div>
626
            <div class="long">
627
                Enable this component.    <div class="mdetail-params">
628
        <strong>Parameters:</strong>
629
        <ul><li>None.</li>        </ul>
630
        <strong>Returns:</strong>
631
        <ul>
632
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
633
        </ul>
634
    </div>
635
                </div>
636
                        </div>
637
        </td>
638
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>
639
    </tr>
640
        <tr class="method-row inherited expandable">
641
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
642
        <td class="sig">
643
        <a id="Ext.ProgressBar-findParentBy"></a>
644
            <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">
645
                        <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
646
true, the con...</div>
647
            <div class="long">
648
                Find a container above this component at any level by a custom function. If the passed function returns
649
true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">
650
        <strong>Parameters:</strong>
651
        <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>
652
        <strong>Returns:</strong>
653
        <ul>
654
            <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>
655
        </ul>
656
    </div>
657
                </div>
658
                        </div>
659
        </td>
660
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>
661
    </tr>
662
        <tr class="method-row inherited alt expandable">
663
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
664
        <td class="sig">
665
        <a id="Ext.ProgressBar-findParentByType"></a>
666
            <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Container            <div class="mdesc">
667
                        <div class="short">Find a container above this component at any level by xtype or class</div>
668
            <div class="long">
669
                Find a container above this component at any level by xtype or class    <div class="mdetail-params">
670
        <strong>Parameters:</strong>
671
        <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>
672
        <strong>Returns:</strong>
673
        <ul>
674
            <li><code>Container</code><div class="sub-desc">The found container</div></li>
675
        </ul>
676
    </div>
677
                </div>
678
                        </div>
679
        </td>
680
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>
681
    </tr>
682
        <tr class="method-row inherited expandable">
683
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
684
        <td class="sig">
685
        <a id="Ext.ProgressBar-fireEvent"></a>
686
            <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">
687
                        <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>
688
            <div class="long">
689
                Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">
690
        <strong>Parameters:</strong>
691
        <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>
692
        <strong>Returns:</strong>
693
        <ul>
694
            <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>
695
        </ul>
696
    </div>
697
                </div>
698
                        </div>
699
        </td>
700
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>
701
    </tr>
702
        <tr class="method-row inherited alt expandable">
703
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
704
        <td class="sig">
705
        <a id="Ext.ProgressBar-focus"></a>
706
            <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">
707
                        <div class="short">Try to focus this component.</div>
708
            <div class="long">
709
                Try to focus this component.    <div class="mdetail-params">
710
        <strong>Parameters:</strong>
711
        <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>
712
        <strong>Returns:</strong>
713
        <ul>
714
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
715
        </ul>
716
    </div>
717
                </div>
718
                        </div>
719
        </td>
720
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>
721
    </tr>
722
        <tr class="method-row inherited expandable">
723
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
724
        <td class="sig">
725
        <a id="Ext.ProgressBar-getBox"></a>
726
            <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">
727
                        <div class="short">Gets the current box measurements of the component's underlying element.</div>
728
            <div class="long">
729
                Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">
730
        <strong>Parameters:</strong>
731
        <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>
732
        <strong>Returns:</strong>
733
        <ul>
734
            <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>
735
        </ul>
736
    </div>
737
                </div>
738
                        </div>
739
        </td>
740
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>
741
    </tr>
742
        <tr class="method-row inherited alt expandable">
743
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
744
        <td class="sig">
745
        <a id="Ext.ProgressBar-getEl"></a>
746
            <b>getEl</b>() : Ext.Element            <div class="mdesc">
747
                        <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>
748
            <div class="long">
749
                Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">
750
        <strong>Parameters:</strong>
751
        <ul><li>None.</li>        </ul>
752
        <strong>Returns:</strong>
753
        <ul>
754
            <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>
755
        </ul>
756
    </div>
757
                </div>
758
                        </div>
759
        </td>
760
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>
761
    </tr>
762
        <tr class="method-row inherited expandable">
763
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
764
        <td class="sig">
765
        <a id="Ext.ProgressBar-getId"></a>
766
            <b>getId</b>() : String            <div class="mdesc">
767
                        <div class="short">Returns the id of this component.</div>
768
            <div class="long">
769
                Returns the id of this component.    <div class="mdetail-params">
770
        <strong>Parameters:</strong>
771
        <ul><li>None.</li>        </ul>
772
        <strong>Returns:</strong>
773
        <ul>
774
            <li><code>String</code></li>
775
        </ul>
776
    </div>
777
                </div>
778
                        </div>
779
        </td>
780
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>
781
    </tr>
782
        <tr class="method-row inherited alt expandable">
783
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
784
        <td class="sig">
785
        <a id="Ext.ProgressBar-getItemId"></a>
786
            <b>getItemId</b>() : String            <div class="mdesc">
787
                        <div class="short">Returns the item id of this component.</div>
788
            <div class="long">
789
                Returns the item id of this component.    <div class="mdetail-params">
790
        <strong>Parameters:</strong>
791
        <ul><li>None.</li>        </ul>
792
        <strong>Returns:</strong>
793
        <ul>
794
            <li><code>String</code></li>
795
        </ul>
796
    </div>
797
                </div>
798
                        </div>
799
        </td>
800
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>
801
    </tr>
802
        <tr class="method-row inherited expandable">
803
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
804
        <td class="sig">
805
        <a id="Ext.ProgressBar-getPosition"></a>
806
            <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">
807
                        <div class="short">Gets the current XY position of the component's underlying element.</div>
808
            <div class="long">
809
                Gets the current XY position of the component's underlying element.    <div class="mdetail-params">
810
        <strong>Parameters:</strong>
811
        <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>
812
        <strong>Returns:</strong>
813
        <ul>
814
            <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>
815
        </ul>
816
    </div>
817
                </div>
818
                        </div>
819
        </td>
820
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>
821
    </tr>
822
        <tr class="method-row inherited alt expandable">
823
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
824
        <td class="sig">
825
        <a id="Ext.ProgressBar-getSize"></a>
826
            <b>getSize</b>() : Object            <div class="mdesc">
827
                        <div class="short">Gets the current size of the component's underlying element.</div>
828
            <div class="long">
829
                Gets the current size of the component's underlying element.    <div class="mdetail-params">
830
        <strong>Parameters:</strong>
831
        <ul><li>None.</li>        </ul>
832
        <strong>Returns:</strong>
833
        <ul>
834
            <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>
835
        </ul>
836
    </div>
837
                </div>
838
                        </div>
839
        </td>
840
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>
841
    </tr>
842
        <tr class="method-row inherited expandable">
843
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
844
        <td class="sig">
845
        <a id="Ext.ProgressBar-getXType"></a>
846
            <b>getXType</b>() : String            <div class="mdesc">
847
                        <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
848
available xtypes, see the Ex...</div>
849
            <div class="long">
850
                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
851
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
852
<pre><code>var t = <b>new</b> Ext.form.TextField();
853
alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">
854
        <strong>Parameters:</strong>
855
        <ul><li>None.</li>        </ul>
856
        <strong>Returns:</strong>
857
        <ul>
858
            <li><code>String</code><div class="sub-desc">The xtype</div></li>
859
        </ul>
860
    </div>
861
                </div>
862
                        </div>
863
        </td>
864
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>
865
    </tr>
866
        <tr class="method-row inherited alt expandable">
867
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
868
        <td class="sig">
869
        <a id="Ext.ProgressBar-getXTypes"></a>
870
            <b>getXTypes</b>() : String            <div class="mdesc">
871
                        <div class="short">Returns this component's xtype hierarchy as a slash-delimited string. For a list of all
872
available xtypes, see the Ext...</div>
873
            <div class="long">
874
                Returns this component's xtype hierarchy as a slash-delimited string. For a list of all
875
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
876
<pre><code>
877
var t = new Ext.form.TextField();
878
alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">
879
        <strong>Parameters:</strong>
880
        <ul><li>None.</li>        </ul>
881
        <strong>Returns:</strong>
882
        <ul>
883
            <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>
884
        </ul>
885
    </div>
886
                </div>
887
                        </div>
888
        </td>
889
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>
890
    </tr>
891
        <tr class="method-row inherited expandable">
892
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
893
        <td class="sig">
894
        <a id="Ext.ProgressBar-hasListener"></a>
895
            <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">
896
                        <div class="short">Checks to see if this object has any listeners for a specified event</div>
897
            <div class="long">
898
                Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">
899
        <strong>Parameters:</strong>
900
        <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>
901
        <strong>Returns:</strong>
902
        <ul>
903
            <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>
904
        </ul>
905
    </div>
906
                </div>
907
                        </div>
908
        </td>
909
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>
910
    </tr>
911
        <tr class="method-row inherited alt expandable">
912
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
913
        <td class="sig">
914
        <a id="Ext.ProgressBar-hide"></a>
915
            <b>hide</b>() : Ext.Component            <div class="mdesc">
916
                        <div class="short">Hide this component.</div>
917
            <div class="long">
918
                Hide this component.    <div class="mdetail-params">
919
        <strong>Parameters:</strong>
920
        <ul><li>None.</li>        </ul>
921
        <strong>Returns:</strong>
922
        <ul>
923
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
924
        </ul>
925
    </div>
926
                </div>
927
                        </div>
928
        </td>
929
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>
930
    </tr>
931
        <tr class="method-row inherited expandable">
932
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
933
        <td class="sig">
934
        <a id="Ext.ProgressBar-initComponent"></a>
935
            <b>initComponent</b>() : void            <div class="mdesc">
936
                        <div class="short">// private internal config</div>
937
            <div class="long">
938
                // private internal config    <div class="mdetail-params">
939
        <strong>Parameters:</strong>
940
        <ul><li>None.</li>        </ul>
941
        <strong>Returns:</strong>
942
        <ul>
943
            <li><code>void</code></li>
944
        </ul>
945
    </div>
946
                </div>
947
                        </div>
948
        </td>
949
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#initComponent" href="output/Ext.BoxComponent.html#initComponent">BoxComponent</a></td>
950
    </tr>
951
        <tr class="method-row inherited alt expandable">
952
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
953
        <td class="sig">
954
        <a id="Ext.ProgressBar-isVisible"></a>
955
            <b>isVisible</b>() : void            <div class="mdesc">
956
                        <div class="short">Returns true if this component is visible.</div>
957
            <div class="long">
958
                Returns true if this component is visible.    <div class="mdetail-params">
959
        <strong>Parameters:</strong>
960
        <ul><li>None.</li>        </ul>
961
        <strong>Returns:</strong>
962
        <ul>
963
            <li><code>void</code></li>
964
        </ul>
965
    </div>
966
                </div>
967
                        </div>
968
        </td>
969
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>
970
    </tr>
971
        <tr class="method-row expandable">
972
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
973
        <td class="sig">
974
        <a id="Ext.ProgressBar-isWaiting"></a>
975
            <b>isWaiting</b>() : Boolean            <div class="mdesc">
976
                        <div class="short">Returns true if the progress bar is currently in a <a ext:cls="Ext.ProgressBar" ext:member="wait" href="output/Ext.ProgressBar.html#wait">wait</a> operation</div>
977
            <div class="long">
978
                Returns true if the progress bar is currently in a <a ext:cls="Ext.ProgressBar" ext:member="wait" href="output/Ext.ProgressBar.html#wait">wait</a> operation    <div class="mdetail-params">
979
        <strong>Parameters:</strong>
980
        <ul><li>None.</li>        </ul>
981
        <strong>Returns:</strong>
982
        <ul>
983
            <li><code>Boolean</code><div class="sub-desc">True if waiting, else false</div></li>
984
        </ul>
985
    </div>
986
                </div>
987
                        </div>
988
        </td>
989
        <td class="msource">ProgressBar</td>
990
    </tr>
991
        <tr class="method-row inherited alt expandable">
992
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
993
        <td class="sig">
994
        <a id="Ext.ProgressBar-isXType"></a>
995
            <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">
996
                        <div class="short">Tests whether or not this component is of a specific xtype. This can test whether this component is descended
997
from th...</div>
998
            <div class="long">
999
                Tests whether or not this component is of a specific xtype. This can test whether this component is descended
1000
from the xtype (default) or whether it is directly of the xtype specified (shallow = true). For a list of all
1001
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1002
<pre><code>var t = <b>new</b> Ext.form.TextField();
1003
<b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
1004
<b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
1005
<b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">
1006
        <strong>Parameters:</strong>
1007
        <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
1008
the default), or true to check whether this component is directly of the specified xtype.</div></li>        </ul>
1009
        <strong>Returns:</strong>
1010
        <ul>
1011
            <li><code>void</code></li>
1012
        </ul>
1013
    </div>
1014
                </div>
1015
                        </div>
1016
        </td>
1017
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>
1018
    </tr>
1019
        <tr class="method-row inherited expandable">
1020
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1021
        <td class="sig">
1022
        <a id="Ext.ProgressBar-on"></a>
1023
            <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">
1024
                        <div class="short">Appends an event handler to this element (shorthand for addListener)</div>
1025
            <div class="long">
1026
                Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">
1027
        <strong>Parameters:</strong>
1028
        <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
1029
function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>
1030
        <strong>Returns:</strong>
1031
        <ul>
1032
            <li><code>void</code></li>
1033
        </ul>
1034
    </div>
1035
                </div>
1036
                        </div>
1037
        </td>
1038
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>
1039
    </tr>
1040
        <tr class="method-row inherited alt expandable">
1041
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1042
        <td class="sig">
1043
        <a id="Ext.ProgressBar-purgeListeners"></a>
1044
            <b>purgeListeners</b>() : void            <div class="mdesc">
1045
                        <div class="short">Removes all listeners for this object</div>
1046
            <div class="long">
1047
                Removes all listeners for this object    <div class="mdetail-params">
1048
        <strong>Parameters:</strong>
1049
        <ul><li>None.</li>        </ul>
1050
        <strong>Returns:</strong>
1051
        <ul>
1052
            <li><code>void</code></li>
1053
        </ul>
1054
    </div>
1055
                </div>
1056
                        </div>
1057
        </td>
1058
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>
1059
    </tr>
1060
        <tr class="method-row inherited expandable">
1061
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1062
        <td class="sig">
1063
        <a id="Ext.ProgressBar-removeClass"></a>
1064
            <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
1065
                        <div class="short">Removes a CSS class from the component's underlying element.</div>
1066
            <div class="long">
1067
                Removes a CSS class from the component's underlying element.    <div class="mdetail-params">
1068
        <strong>Parameters:</strong>
1069
        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>
1070
        <strong>Returns:</strong>
1071
        <ul>
1072
            <li><code>void</code></li>
1073
        </ul>
1074
    </div>
1075
                </div>
1076
                        </div>
1077
        </td>
1078
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>
1079
    </tr>
1080
        <tr class="method-row inherited alt expandable">
1081
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1082
        <td class="sig">
1083
        <a id="Ext.ProgressBar-removeListener"></a>
1084
            <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">
1085
                        <div class="short">Removes a listener</div>
1086
            <div class="long">
1087
                Removes a listener    <div class="mdetail-params">
1088
        <strong>Parameters:</strong>
1089
        <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>
1090
        <strong>Returns:</strong>
1091
        <ul>
1092
            <li><code>void</code></li>
1093
        </ul>
1094
    </div>
1095
                </div>
1096
                        </div>
1097
        </td>
1098
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>
1099
    </tr>
1100
        <tr class="method-row inherited expandable">
1101
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1102
        <td class="sig">
1103
        <a id="Ext.ProgressBar-render"></a>
1104
            <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Mixed container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">
1105
                        <div class="short">If this is a lazy rendering component, render it to its container element.</div>
1106
            <div class="long">
1107
                If this is a lazy rendering component, render it to its container element.    <div class="mdetail-params">
1108
        <strong>Parameters:</strong>
1109
        <ul><li><code>container</code> : Mixed<div class="sub-desc">(optional) The element this component should be rendered into. If it is being
1110
applied to existing markup, this should be left off.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
1111
which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>
1112
        <strong>Returns:</strong>
1113
        <ul>
1114
            <li><code>void</code></li>
1115
        </ul>
1116
    </div>
1117
                </div>
1118
                        </div>
1119
        </td>
1120
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>
1121
    </tr>
1122
        <tr class="method-row alt expandable">
1123
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1124
        <td class="sig">
1125
        <a id="Ext.ProgressBar-reset"></a>
1126
            <b>reset</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean hide</code>]</span>&nbsp;) : Ext.ProgressBar            <div class="mdesc">
1127
                        <div class="short">Resets the progress bar value to 0 and text to empty string.  If hide = true, the progress
1128
bar will also be hidden (u...</div>
1129
            <div class="long">
1130
                Resets the progress bar value to 0 and text to empty string.  If hide = true, the progress
1131
bar will also be hidden (using the <a ext:cls="Ext.ProgressBar" ext:member="hideMode" href="output/Ext.ProgressBar.html#hideMode">hideMode</a> property internally).    <div class="mdetail-params">
1132
        <strong>Parameters:</strong>
1133
        <ul><li><code>hide</code> : Boolean<div class="sub-desc">(optional) True to hide the progress bar (defaults to false)</div></li>        </ul>
1134
        <strong>Returns:</strong>
1135
        <ul>
1136
            <li><code>Ext.ProgressBar</code><div class="sub-desc">this</div></li>
1137
        </ul>
1138
    </div>
1139
                </div>
1140
                        </div>
1141
        </td>
1142
        <td class="msource">ProgressBar</td>
1143
    </tr>
1144
        <tr class="method-row inherited expandable">
1145
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1146
        <td class="sig">
1147
        <a id="Ext.ProgressBar-resumeEvents"></a>
1148
            <b>resumeEvents</b>() : void            <div class="mdesc">
1149
                        <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>
1150
            <div class="long">
1151
                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">
1152
        <strong>Parameters:</strong>
1153
        <ul><li>None.</li>        </ul>
1154
        <strong>Returns:</strong>
1155
        <ul>
1156
            <li><code>void</code></li>
1157
        </ul>
1158
    </div>
1159
                </div>
1160
                        </div>
1161
        </td>
1162
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>
1163
    </tr>
1164
        <tr class="method-row inherited alt expandable">
1165
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1166
        <td class="sig">
1167
        <a id="Ext.ProgressBar-setDisabled"></a>
1168
            <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">
1169
                        <div class="short">Convenience function for setting disabled/enabled by boolean.</div>
1170
            <div class="long">
1171
                Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">
1172
        <strong>Parameters:</strong>
1173
        <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>
1174
        <strong>Returns:</strong>
1175
        <ul>
1176
            <li><code>void</code></li>
1177
        </ul>
1178
    </div>
1179
                </div>
1180
                        </div>
1181
        </td>
1182
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>
1183
    </tr>
1184
        <tr class="method-row inherited expandable">
1185
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1186
        <td class="sig">
1187
        <a id="Ext.ProgressBar-setHeight"></a>
1188
            <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1189
                        <div class="short">Sets the height of the component.  This method fires the resize event.</div>
1190
            <div class="long">
1191
                Sets the height of the component.  This method fires the resize event.    <div class="mdetail-params">
1192
        <strong>Parameters:</strong>
1193
        <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>
1194
        <strong>Returns:</strong>
1195
        <ul>
1196
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1197
        </ul>
1198
    </div>
1199
                </div>
1200
                        </div>
1201
        </td>
1202
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>
1203
    </tr>
1204
        <tr class="method-row inherited alt expandable">
1205
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1206
        <td class="sig">
1207
        <a id="Ext.ProgressBar-setPagePosition"></a>
1208
            <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1209
                        <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
1210
This method fires the ...</div>
1211
            <div class="long">
1212
                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>.
1213
This method fires the move event.    <div class="mdetail-params">
1214
        <strong>Parameters:</strong>
1215
        <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>
1216
        <strong>Returns:</strong>
1217
        <ul>
1218
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1219
        </ul>
1220
    </div>
1221
                </div>
1222
                        </div>
1223
        </td>
1224
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>
1225
    </tr>
1226
        <tr class="method-row inherited expandable">
1227
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1228
        <td class="sig">
1229
        <a id="Ext.ProgressBar-setPosition"></a>
1230
            <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1231
                        <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
1232
This method fires ...</div>
1233
            <div class="long">
1234
                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>.
1235
This method fires the move event.    <div class="mdetail-params">
1236
        <strong>Parameters:</strong>
1237
        <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>
1238
        <strong>Returns:</strong>
1239
        <ul>
1240
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1241
        </ul>
1242
    </div>
1243
                </div>
1244
                        </div>
1245
        </td>
1246
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>
1247
    </tr>
1248
        <tr class="method-row alt expandable">
1249
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1250
        <td class="sig">
1251
        <a id="Ext.ProgressBar-setSize"></a>
1252
            <b>setSize</b>(&nbsp;<code>Number width</code>, <code>Number height</code>&nbsp;) : Ext.ProgressBar            <div class="mdesc">
1253
                        <div class="short">Sets the size of the progress bar.</div>
1254
            <div class="long">
1255
                Sets the size of the progress bar.    <div class="mdetail-params">
1256
        <strong>Parameters:</strong>
1257
        <ul><li><code>width</code> : Number<div class="sub-desc">The new width in pixels</div></li><li><code>height</code> : Number<div class="sub-desc">The new height in pixels</div></li>        </ul>
1258
        <strong>Returns:</strong>
1259
        <ul>
1260
            <li><code>Ext.ProgressBar</code><div class="sub-desc">this</div></li>
1261
        </ul>
1262
    </div>
1263
                </div>
1264
                        </div>
1265
        </td>
1266
        <td class="msource">ProgressBar</td>
1267
    </tr>
1268
        <tr class="method-row inherited expandable">
1269
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1270
        <td class="sig">
1271
        <a id="Ext.ProgressBar-setVisible"></a>
1272
            <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">
1273
                        <div class="short">Convenience function to hide or show this component by boolean.</div>
1274
            <div class="long">
1275
                Convenience function to hide or show this component by boolean.    <div class="mdetail-params">
1276
        <strong>Parameters:</strong>
1277
        <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>
1278
        <strong>Returns:</strong>
1279
        <ul>
1280
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1281
        </ul>
1282
    </div>
1283
                </div>
1284
                        </div>
1285
        </td>
1286
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>
1287
    </tr>
1288
        <tr class="method-row inherited alt expandable">
1289
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1290
        <td class="sig">
1291
        <a id="Ext.ProgressBar-setWidth"></a>
1292
            <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1293
                        <div class="short">Sets the width of the component.  This method fires the resize event.</div>
1294
            <div class="long">
1295
                Sets the width of the component.  This method fires the resize event.    <div class="mdetail-params">
1296
        <strong>Parameters:</strong>
1297
        <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>
1298
        <strong>Returns:</strong>
1299
        <ul>
1300
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1301
        </ul>
1302
    </div>
1303
                </div>
1304
                        </div>
1305
        </td>
1306
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>
1307
    </tr>
1308
        <tr class="method-row inherited expandable">
1309
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1310
        <td class="sig">
1311
        <a id="Ext.ProgressBar-show"></a>
1312
            <b>show</b>() : Ext.Component            <div class="mdesc">
1313
                        <div class="short">Show this component.</div>
1314
            <div class="long">
1315
                Show this component.    <div class="mdetail-params">
1316
        <strong>Parameters:</strong>
1317
        <ul><li>None.</li>        </ul>
1318
        <strong>Returns:</strong>
1319
        <ul>
1320
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1321
        </ul>
1322
    </div>
1323
                </div>
1324
                        </div>
1325
        </td>
1326
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>
1327
    </tr>
1328
        <tr class="method-row inherited alt expandable">
1329
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1330
        <td class="sig">
1331
        <a id="Ext.ProgressBar-suspendEvents"></a>
1332
            <b>suspendEvents</b>() : void            <div class="mdesc">
1333
                        <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>
1334
            <div class="long">
1335
                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">
1336
        <strong>Parameters:</strong>
1337
        <ul><li>None.</li>        </ul>
1338
        <strong>Returns:</strong>
1339
        <ul>
1340
            <li><code>void</code></li>
1341
        </ul>
1342
    </div>
1343
                </div>
1344
                        </div>
1345
        </td>
1346
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>
1347
    </tr>
1348
        <tr class="method-row inherited expandable">
1349
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1350
        <td class="sig">
1351
        <a id="Ext.ProgressBar-syncSize"></a>
1352
            <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">
1353
                        <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>
1354
            <div class="long">
1355
                Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">
1356
        <strong>Parameters:</strong>
1357
        <ul><li>None.</li>        </ul>
1358
        <strong>Returns:</strong>
1359
        <ul>
1360
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1361
        </ul>
1362
    </div>
1363
                </div>
1364
                        </div>
1365
        </td>
1366
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>
1367
    </tr>
1368
        <tr class="method-row inherited alt expandable">
1369
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1370
        <td class="sig">
1371
        <a id="Ext.ProgressBar-un"></a>
1372
            <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">
1373
                        <div class="short">Removes a listener (shorthand for removeListener)</div>
1374
            <div class="long">
1375
                Removes a listener (shorthand for removeListener)    <div class="mdetail-params">
1376
        <strong>Parameters:</strong>
1377
        <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>
1378
        <strong>Returns:</strong>
1379
        <ul>
1380
            <li><code>void</code></li>
1381
        </ul>
1382
    </div>
1383
                </div>
1384
                        </div>
1385
        </td>
1386
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>
1387
    </tr>
1388
        <tr class="method-row inherited expandable">
1389
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1390
        <td class="sig">
1391
        <a id="Ext.ProgressBar-updateBox"></a>
1392
            <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1393
                        <div class="short">Sets the current box measurements of the component's underlying element.</div>
1394
            <div class="long">
1395
                Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">
1396
        <strong>Parameters:</strong>
1397
        <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>
1398
        <strong>Returns:</strong>
1399
        <ul>
1400
            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1401
        </ul>
1402
    </div>
1403
                </div>
1404
                        </div>
1405
        </td>
1406
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>
1407
    </tr>
1408
        <tr class="method-row alt expandable">
1409
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1410
        <td class="sig">
1411
        <a id="Ext.ProgressBar-updateProgress"></a>
1412
            <b>updateProgress</b>(&nbsp;<span class="optional" title="Optional">[<code>Float value</code>]</span>, <span class="optional" title="Optional">[<code>String text</code>]</span>&nbsp;) : Ext.ProgressBar            <div class="mdesc">
1413
                        <div class="short">Updates the progress bar value, and optionally its text.  If the text argument is not specified,
1414
any existing text va...</div>
1415
            <div class="long">
1416
                Updates the progress bar value, and optionally its text.  If the text argument is not specified,
1417
any existing text value will be unchanged.  To blank out existing text, pass ''.  Note that even
1418
if the progress bar value exceeds 1, it will never automatically reset -- you are responsible for
1419
determining when the progress is complete and calling <a ext:cls="Ext.ProgressBar" ext:member="reset" href="output/Ext.ProgressBar.html#reset">reset</a> to clear and/or hide the control.    <div class="mdetail-params">
1420
        <strong>Parameters:</strong>
1421
        <ul><li><code>value</code> : Float<div class="sub-desc">(optional) A floating point value between 0 and 1 (e.g., .5, defaults to 0)</div></li><li><code>text</code> : String<div class="sub-desc">(optional) The string to display in the progress text element (defaults to '')</div></li>        </ul>
1422
        <strong>Returns:</strong>
1423
        <ul>
1424
            <li><code>Ext.ProgressBar</code><div class="sub-desc">this</div></li>
1425
        </ul>
1426
    </div>
1427
                </div>
1428
                        </div>
1429
        </td>
1430
        <td class="msource">ProgressBar</td>
1431
    </tr>
1432
        <tr class="method-row expandable">
1433
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1434
        <td class="sig">
1435
        <a id="Ext.ProgressBar-updateText"></a>
1436
            <b>updateText</b>(&nbsp;<span class="optional" title="Optional">[<code>String text</code>]</span>&nbsp;) : Ext.ProgressBar            <div class="mdesc">
1437
                        <div class="short">Updates the progress bar text.  If specified, textEl will be updated, otherwise the progress
1438
bar itself will display ...</div>
1439
            <div class="long">
1440
                Updates the progress bar text.  If specified, textEl will be updated, otherwise the progress
1441
bar itself will display the updated text.    <div class="mdetail-params">
1442
        <strong>Parameters:</strong>
1443
        <ul><li><code>text</code> : String<div class="sub-desc">(optional) The string to display in the progress text element (defaults to '')</div></li>        </ul>
1444
        <strong>Returns:</strong>
1445
        <ul>
1446
            <li><code>Ext.ProgressBar</code><div class="sub-desc">this</div></li>
1447
        </ul>
1448
    </div>
1449
                </div>
1450
                        </div>
1451
        </td>
1452
        <td class="msource">ProgressBar</td>
1453
    </tr>
1454
        <tr class="method-row alt expandable">
1455
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1456
        <td class="sig">
1457
        <a id="Ext.ProgressBar-wait"></a>
1458
            <b>wait</b>(&nbsp;<span class="optional" title="Optional">[<code>Object config</code>]</span>&nbsp;) : Ext.ProgressBar            <div class="mdesc">
1459
                        <div class="short">Initiates an auto-updating progress bar.  A duration can be specified, in which case the progress
1460
bar will automatica...</div>
1461
            <div class="long">
1462
                Initiates an auto-updating progress bar.  A duration can be specified, in which case the progress
1463
bar will automatically reset after a fixed amount of time and optionally call a callback function
1464
if specified.  If no duration is passed in, then the progress bar will run indefinitely and must
1465
be manually cleared by calling <a ext:cls="Ext.ProgressBar" ext:member="reset" href="output/Ext.ProgressBar.html#reset">reset</a>.  The wait method accepts a config object with
1466
the following properties:
1467
<pre>Property   Type          Description
1468
---------- ------------  ----------------------------------------------------------------------
1469
duration   Number        The length of time in milliseconds that the progress bar should
1470
                         run before resetting itself (defaults to undefined, in which case it
1471
                         will run indefinitely until reset is called)
1472
interval   Number        The length of time in milliseconds between each progress update
1473
                         (defaults to 1000 ms)
1474
increment  Number        The number of progress update segments to display within the progress
1475
                         bar (defaults to 10).  If the bar reaches the end and is still
1476
                         updating, it will automatically wrap back to the beginning.
1477
fn         Function      A callback function to execute after the progress bar finishes auto-
1478
                         updating.  The function will be called with no arguments.  This function
1479
                         will be ignored if duration is not specified since in that case the
1480
                         progress bar can only be stopped programmatically, so any required function
1481
                         should be called by the same code after it resets the progress bar.
1482
scope      Object        The scope that is passed to the callback function (only applies when
1483
                         duration and fn are both passed).</pre>
1484
Example usage:
1485
<pre><code>var p = <b>new</b> Ext.ProgressBar({
1486
   renderTo: <em>'my-el'</em>
1487
});
1488
 
1489
<i>//Wait <b>for</b> 5 seconds, then update the status el (progress bar will auto-reset)</i>
1490
p.wait({
1491
   interval: 100, <i>//bar will move fast!</i>
1492
   duration: 5000,
1493
   increment: 15,
1494
   scope: <b>this</b>,
1495
   fn: <b>function</b>(){
1496
      Ext.fly(<em>'status'</em>).update(<em>'Done!'</em>);
1497
   }
1498
});
1499
 
1500
<i>//Or update indefinitely until some async action completes, then reset manually</i>
1501
p.wait();
1502
myAction.on(<em>'complete'</em>, <b>function</b>(){
1503
    p.reset();
1504
    Ext.fly(<em>'status'</em>).update(<em>'Done!'</em>);
1505
});</code></pre>    <div class="mdetail-params">
1506
        <strong>Parameters:</strong>
1507
        <ul><li><code>config</code> : Object<div class="sub-desc">(optional) Configuration options</div></li>        </ul>
1508
        <strong>Returns:</strong>
1509
        <ul>
1510
            <li><code>Ext.ProgressBar</code><div class="sub-desc">this</div></li>
1511
        </ul>
1512
    </div>
1513
                </div>
1514
                        </div>
1515
        </td>
1516
        <td class="msource">ProgressBar</td>
1517
    </tr>
1518
            </table>
1519
                <a id="Ext.ProgressBar-events"></a>
1520
        <h2>Public Events</h2>
1521
                <table cellspacing="0" class="member-table">
1522
            <tr>
1523
                <th class="sig-header" colspan="2">Event</th>
1524
                <th class="msource-header">Defined By</th>
1525
            </tr>
1526
                <tr class="event-row inherited expandable">
1527
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1528
        <td class="sig">
1529
        <a id="Ext.ProgressBar-beforedestroy"></a>
1530
            <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1531
                        <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>
1532
            <div class="long">
1533
                Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">
1534
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1535
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1536
    </div>
1537
                </div>
1538
                        </div>
1539
        </td>
1540
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>
1541
    </tr>
1542
        <tr class="event-row inherited alt expandable">
1543
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1544
        <td class="sig">
1545
        <a id="Ext.ProgressBar-beforehide"></a>
1546
            <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1547
                        <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>
1548
            <div class="long">
1549
                Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">
1550
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1551
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1552
    </div>
1553
                </div>
1554
                        </div>
1555
        </td>
1556
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>
1557
    </tr>
1558
        <tr class="event-row inherited expandable">
1559
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1560
        <td class="sig">
1561
        <a id="Ext.ProgressBar-beforerender"></a>
1562
            <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1563
                        <div class="short">Fires before the component is rendered. Return false to stop the render.</div>
1564
            <div class="long">
1565
                Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">
1566
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1567
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1568
    </div>
1569
                </div>
1570
                        </div>
1571
        </td>
1572
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>
1573
    </tr>
1574
        <tr class="event-row inherited alt expandable">
1575
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1576
        <td class="sig">
1577
        <a id="Ext.ProgressBar-beforeshow"></a>
1578
            <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1579
                        <div class="short">Fires before the component is shown. Return false to stop the show.</div>
1580
            <div class="long">
1581
                Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">
1582
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1583
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1584
    </div>
1585
                </div>
1586
                        </div>
1587
        </td>
1588
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>
1589
    </tr>
1590
        <tr class="event-row inherited expandable">
1591
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1592
        <td class="sig">
1593
        <a id="Ext.ProgressBar-beforestaterestore"></a>
1594
            <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1595
                        <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>
1596
            <div class="long">
1597
                Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">
1598
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1599
        <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>
1600
    </div>
1601
                </div>
1602
                        </div>
1603
        </td>
1604
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>
1605
    </tr>
1606
        <tr class="event-row inherited alt expandable">
1607
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1608
        <td class="sig">
1609
        <a id="Ext.ProgressBar-beforestatesave"></a>
1610
            <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1611
                        <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>
1612
            <div class="long">
1613
                Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">
1614
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1615
        <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>
1616
    </div>
1617
                </div>
1618
                        </div>
1619
        </td>
1620
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>
1621
    </tr>
1622
        <tr class="event-row inherited expandable">
1623
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1624
        <td class="sig">
1625
        <a id="Ext.ProgressBar-destroy"></a>
1626
            <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1627
                        <div class="short">Fires after the component is destroyed.</div>
1628
            <div class="long">
1629
                Fires after the component is destroyed.    <div class="mdetail-params">
1630
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1631
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1632
    </div>
1633
                </div>
1634
                        </div>
1635
        </td>
1636
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>
1637
    </tr>
1638
        <tr class="event-row inherited alt expandable">
1639
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1640
        <td class="sig">
1641
        <a id="Ext.ProgressBar-disable"></a>
1642
            <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1643
                        <div class="short">Fires after the component is disabled.</div>
1644
            <div class="long">
1645
                Fires after the component is disabled.    <div class="mdetail-params">
1646
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1647
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1648
    </div>
1649
                </div>
1650
                        </div>
1651
        </td>
1652
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>
1653
    </tr>
1654
        <tr class="event-row inherited expandable">
1655
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1656
        <td class="sig">
1657
        <a id="Ext.ProgressBar-enable"></a>
1658
            <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1659
                        <div class="short">Fires after the component is enabled.</div>
1660
            <div class="long">
1661
                Fires after the component is enabled.    <div class="mdetail-params">
1662
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1663
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1664
    </div>
1665
                </div>
1666
                        </div>
1667
        </td>
1668
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>
1669
    </tr>
1670
        <tr class="event-row inherited alt expandable">
1671
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1672
        <td class="sig">
1673
        <a id="Ext.ProgressBar-hide"></a>
1674
            <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1675
                        <div class="short">Fires after the component is hidden.</div>
1676
            <div class="long">
1677
                Fires after the component is hidden.    <div class="mdetail-params">
1678
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1679
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1680
    </div>
1681
                </div>
1682
                        </div>
1683
        </td>
1684
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>
1685
    </tr>
1686
        <tr class="event-row inherited expandable">
1687
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1688
        <td class="sig">
1689
        <a id="Ext.ProgressBar-move"></a>
1690
            <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">
1691
                        <div class="short">Fires after the component is moved.</div>
1692
            <div class="long">
1693
                Fires after the component is moved.    <div class="mdetail-params">
1694
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1695
        <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>
1696
    </div>
1697
                </div>
1698
                        </div>
1699
        </td>
1700
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>
1701
    </tr>
1702
        <tr class="event-row inherited alt expandable">
1703
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1704
        <td class="sig">
1705
        <a id="Ext.ProgressBar-render"></a>
1706
            <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1707
                        <div class="short">Fires after the component is rendered.</div>
1708
            <div class="long">
1709
                Fires after the component is rendered.    <div class="mdetail-params">
1710
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1711
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1712
    </div>
1713
                </div>
1714
                        </div>
1715
        </td>
1716
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>
1717
    </tr>
1718
        <tr class="event-row inherited expandable">
1719
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1720
        <td class="sig">
1721
        <a id="Ext.ProgressBar-resize"></a>
1722
            <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">
1723
                        <div class="short">Fires after the component is resized.</div>
1724
            <div class="long">
1725
                Fires after the component is resized.    <div class="mdetail-params">
1726
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1727
        <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>
1728
    </div>
1729
                </div>
1730
                        </div>
1731
        </td>
1732
        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>
1733
    </tr>
1734
        <tr class="event-row inherited alt expandable">
1735
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1736
        <td class="sig">
1737
        <a id="Ext.ProgressBar-show"></a>
1738
            <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1739
                        <div class="short">Fires after the component is shown.</div>
1740
            <div class="long">
1741
                Fires after the component is shown.    <div class="mdetail-params">
1742
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1743
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1744
    </div>
1745
                </div>
1746
                        </div>
1747
        </td>
1748
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>
1749
    </tr>
1750
        <tr class="event-row inherited expandable">
1751
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1752
        <td class="sig">
1753
        <a id="Ext.ProgressBar-staterestore"></a>
1754
            <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1755
                        <div class="short">Fires after the state of the component is restored.</div>
1756
            <div class="long">
1757
                Fires after the state of the component is restored.    <div class="mdetail-params">
1758
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1759
        <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>
1760
    </div>
1761
                </div>
1762
                        </div>
1763
        </td>
1764
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>
1765
    </tr>
1766
        <tr class="event-row inherited alt expandable">
1767
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1768
        <td class="sig">
1769
        <a id="Ext.ProgressBar-statesave"></a>
1770
            <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1771
                        <div class="short">Fires after the state of the component is saved to the configured state provider.</div>
1772
            <div class="long">
1773
                Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">
1774
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1775
        <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>
1776
    </div>
1777
                </div>
1778
                        </div>
1779
        </td>
1780
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>
1781
    </tr>
1782
        <tr class="event-row expandable">
1783
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1784
        <td class="sig">
1785
        <a id="Ext.ProgressBar-update"></a>
1786
            <b>update</b> : (&nbsp;<code>Ext.ProgressBar this</code>, <code>Number The</code>, <code>String The</code>&nbsp;)            <div class="mdesc">
1787
                        <div class="short">Fires after each update interval</div>
1788
            <div class="long">
1789
                Fires after each update interval    <div class="mdetail-params">
1790
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1791
        <ul><li><code>this</code> : Ext.ProgressBar<div class="sub-desc"></div></li><li><code>The</code> : Number<div class="sub-desc">current progress value</div></li><li><code>The</code> : String<div class="sub-desc">current progress text</div></li>        </ul>
1792
    </div>
1793
                </div>
1794
                        </div>
1795
        </td>
1796
        <td class="msource">ProgressBar</td>
1797
    </tr>
1798
            </table>
1799
 
1800
        </div>