~crf-team/crf-irp/crf-irp

« back to all changes in this revision

Viewing changes to WebContent/js/extjs-2/docs/output/Ext.ProgressBar.html

  • Committer: Thomas
  • Date: 2010-03-10 23:55:46 UTC
  • Revision ID: thomas@daisybox-port-20100310235546-23635dk6x5asb1ca
Upgrade ExtJs 3.1.1
Upgrade Spring 3.0.1 + dependencies
Change Jawr JS post processor : YUI
Upgrade to last build of dwr 3 trunk 69 revision 3019(after build 116), upgrade jawr-dwr plugin 1.4 unofficiale from jose noheda, Jawr 3.2.1

Show diffs side-by-side

added added

removed removed

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