Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / source / MessageBox.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-window-MessageBox'>/**
19 </span> * @class Ext.window.MessageBox
20  * @extends Ext.window.Window
21
22 Utility class for generating different styles of message boxes.  The singleton instance, `Ext.Msg` can also be used.
23 Note that a MessageBox is asynchronous.  Unlike a regular JavaScript `alert` (which will halt
24 browser execution), showing a MessageBox will not cause the code to stop.  For this reason, if you have code
25 that should only run *after* some user feedback from the MessageBox, you must use a callback function
26 (see the `function` parameter for {@link #show} for more details).
27
28 {@img Ext.window.MessageBox/messagebox1.png alert MessageBox}
29 {@img Ext.window.MessageBox/messagebox2.png prompt MessageBox}
30 {@img Ext.window.MessageBox/messagebox3.png show MessageBox}
31 #Example usage:#
32
33     // Basic alert:
34     Ext.Msg.alert('Status', 'Changes saved successfully.');
35
36     // Prompt for user data and process the result using a callback:
37     Ext.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
38         if (btn == 'ok'){
39             // process text value and close...
40         }
41     });
42
43     // Show a dialog using config options:
44     Ext.Msg.show({
45          title:'Save Changes?',
46          msg: 'You are closing a tab that has unsaved changes. Would you like to save your changes?',
47          buttons: Ext.Msg.YESNOCANCEL,
48          fn: processResult,
49          animateTarget: 'elId',
50          icon: Ext.window.MessageBox.QUESTION
51     });
52
53  * @markdown
54  * @singleton
55  */
56 Ext.define('Ext.window.MessageBox', {
57     extend: 'Ext.window.Window',
58
59     requires: [
60         'Ext.toolbar.Toolbar',
61         'Ext.form.field.Text',
62         'Ext.form.field.TextArea',
63         'Ext.button.Button',
64         'Ext.layout.container.Anchor',
65         'Ext.layout.container.HBox',
66         'Ext.ProgressBar'
67     ],
68
69     alternateClassName: 'Ext.MessageBox',
70
71     alias: 'widget.messagebox',
72
73 <span id='Ext-window-MessageBox-property-OK'>    /**
74 </span>     * Button config that displays a single OK button
75      * @type Number
76      */
77     OK : 1,
78 <span id='Ext-window-MessageBox-property-YES'>    /**
79 </span>     * Button config that displays a single Yes button
80      * @type Number
81      */
82     YES : 2,
83 <span id='Ext-window-MessageBox-property-NO'>    /**
84 </span>     * Button config that displays a single No button
85      * @type Number
86      */
87     NO : 4,
88 <span id='Ext-window-MessageBox-property-CANCEL'>    /**
89 </span>     * Button config that displays a single Cancel button
90      * @type Number
91      */
92     CANCEL : 8,
93 <span id='Ext-window-MessageBox-property-OKCANCEL'>    /**
94 </span>     * Button config that displays OK and Cancel buttons
95      * @type Number
96      */
97     OKCANCEL : 9,
98 <span id='Ext-window-MessageBox-property-YESNO'>    /**
99 </span>     * Button config that displays Yes and No buttons
100      * @type Number
101      */
102     YESNO : 6,
103 <span id='Ext-window-MessageBox-property-YESNOCANCEL'>    /**
104 </span>     * Button config that displays Yes, No and Cancel buttons
105      * @type Number
106      */
107     YESNOCANCEL : 14,
108 <span id='Ext-window-MessageBox-property-INFO'>    /**
109 </span>     * The CSS class that provides the INFO icon image
110      * @type String
111      */
112     INFO : 'ext-mb-info',
113 <span id='Ext-window-MessageBox-property-WARNING'>    /**
114 </span>     * The CSS class that provides the WARNING icon image
115      * @type String
116      */
117     WARNING : 'ext-mb-warning',
118 <span id='Ext-window-MessageBox-property-QUESTION'>    /**
119 </span>     * The CSS class that provides the QUESTION icon image
120      * @type String
121      */
122     QUESTION : 'ext-mb-question',
123 <span id='Ext-window-MessageBox-property-ERROR'>    /**
124 </span>     * The CSS class that provides the ERROR icon image
125      * @type String
126      */
127     ERROR : 'ext-mb-error',
128
129     // hide it by offsets. Windows are hidden on render by default.
130     hideMode: 'offsets',
131     closeAction: 'hide',
132     resizable: false,
133     title: '&amp;#160;',
134
135     width: 600,
136     height: 500,
137     minWidth: 250,
138     maxWidth: 600,
139     minHeight: 110,
140     maxHeight: 500,
141     constrain: true,
142
143     cls: Ext.baseCSSPrefix + 'message-box',
144
145     layout: {
146         type: 'anchor'
147     },
148
149 <span id='Ext-window-MessageBox-property-defaultTextHeight'>    /**
150 </span>     * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
151      * @type Number
152      */
153     defaultTextHeight : 75,
154 <span id='Ext-window-MessageBox-property-minProgressWidth'>    /**
155 </span>     * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
156      * for setting a different minimum width than text-only dialogs may need (defaults to 250).
157      * @type Number
158      */
159     minProgressWidth : 250,
160 <span id='Ext-window-MessageBox-property-minPromptWidth'>    /**
161 </span>     * The minimum width in pixels of the message box if it is a prompt dialog.  This is useful
162      * for setting a different minimum width than text-only dialogs may need (defaults to 250).
163      * @type Number
164      */
165     minPromptWidth: 250,
166 <span id='Ext-window-MessageBox-property-buttonText'>    /**
167 </span>     * An object containing the default button text strings that can be overriden for localized language support.
168      * Supported properties are: ok, cancel, yes and no.  Generally you should include a locale-specific
169      * resource file for handling language support across the framework.
170      * Customize the default text like so: Ext.window.MessageBox.buttonText.yes = &quot;oui&quot;; //french
171      * @type Object
172      */
173     buttonText: {
174         ok: 'OK',
175         yes: 'Yes',
176         no: 'No',
177         cancel: 'Cancel'
178     },
179
180     buttonIds: [
181         'ok', 'yes', 'no', 'cancel'
182     ],
183
184     titleText: {
185         confirm: 'Confirm',
186         prompt: 'Prompt',
187         wait: 'Loading...',
188         alert: 'Attention'
189     },
190
191     iconHeight: 35,
192
193     makeButton: function(btnIdx) {
194         var btnId = this.buttonIds[btnIdx];
195         return Ext.create('Ext.button.Button', {
196             handler: this.btnCallback,
197             itemId: btnId,
198             scope: this,
199             text: this.buttonText[btnId],
200             minWidth: 75
201         });
202     },
203
204     btnCallback: function(btn) {
205         var me = this,
206             value,
207             field;
208
209         if (me.cfg.prompt || me.cfg.multiline) {
210             if (me.cfg.multiline) {
211                 field = me.textArea;
212             } else {
213                 field = me.textField;
214             }
215             value = field.getValue();
216             field.reset();
217         }
218
219         // Important not to have focus remain in the hidden Window; Interferes with DnD.
220         btn.blur();
221         me.hide();
222         me.userCallback(btn.itemId, value, me.cfg);
223     },
224
225     hide: function() {
226         var me = this;
227         me.dd.endDrag();
228         me.progressBar.reset();
229         me.removeCls(me.cfg.cls);
230         me.callParent();
231     },
232
233     initComponent: function() {
234         var me = this,
235             i, button;
236
237         me.title = '&amp;#160;';
238
239         me.topContainer = Ext.create('Ext.container.Container', {
240             anchor: '100%',
241             style: {
242                 padding: '10px',
243                 overflow: 'hidden'
244             },
245             items: [
246                 me.iconComponent = Ext.create('Ext.Component', {
247                     cls: 'ext-mb-icon',
248                     width: 50,
249                     height: me.iconHeight,
250                     style: {
251                         'float': 'left'
252                     }
253                 }),
254                 me.promptContainer = Ext.create('Ext.container.Container', {
255                     layout: {
256                         type: 'anchor'
257                     },
258                     items: [
259                         me.msg = Ext.create('Ext.Component', {
260                             autoEl: { tag: 'span' },
261                             cls: 'ext-mb-text'
262                         }),
263                         me.textField = Ext.create('Ext.form.field.Text', {
264                             anchor: '100%',
265                             enableKeyEvents: true,
266                             listeners: {
267                                 keydown: me.onPromptKey,
268                                 scope: me
269                             }
270                         }),
271                         me.textArea = Ext.create('Ext.form.field.TextArea', {
272                             anchor: '100%',
273                             height: 75
274                         })
275                     ]
276                 })
277             ]
278         });
279         me.progressBar = Ext.create('Ext.ProgressBar', {
280             anchor: '-10',
281             style: 'margin-left:10px'
282         });
283
284         me.items = [me.topContainer, me.progressBar];
285
286         // Create the buttons based upon passed bitwise config
287         me.msgButtons = [];
288         for (i = 0; i &lt; 4; i++) {
289             button = me.makeButton(i);
290             me.msgButtons[button.itemId] = button;
291             me.msgButtons.push(button);
292         }
293         me.bottomTb = Ext.create('Ext.toolbar.Toolbar', {
294             ui: 'footer',
295             dock: 'bottom',
296             layout: {
297                 pack: 'center'
298             },
299             items: [
300                 me.msgButtons[0],
301                 me.msgButtons[1],
302                 me.msgButtons[2],
303                 me.msgButtons[3]
304             ]
305         });
306         me.dockedItems = [me.bottomTb];
307
308         me.callParent();
309     },
310
311     onPromptKey: function(textField, e) {
312         var me = this,
313             blur;
314
315         if (e.keyCode === Ext.EventObject.RETURN || e.keyCode === 10) {
316             if (me.msgButtons.ok.isVisible()) {
317                 blur = true;
318                 me.msgButtons.ok.handler.call(me, me.msgButtons.ok);
319             } else if (me.msgButtons.yes.isVisible()) {
320                 me.msgButtons.yes.handler.call(me, me.msgButtons.yes);
321                 blur = true;
322             }
323
324             if (blur) {
325                 me.textField.blur();
326             }
327         }
328     },
329
330     reconfigure: function(cfg) {
331         var me = this,
332             buttons = cfg.buttons || 0,
333             hideToolbar = true,
334             initialWidth = me.maxWidth,
335             i;
336
337         cfg = cfg || {};
338         me.cfg = cfg;
339         if (cfg.width) {
340             initialWidth = cfg.width;
341         }
342
343         // Default to allowing the Window to take focus.
344         delete me.defaultFocus;
345
346         // clear any old animateTarget
347         me.animateTarget = cfg.animateTarget || undefined;
348
349         // Defaults to modal
350         me.modal = cfg.modal !== false;
351
352         // Show the title
353         if (cfg.title) {
354             me.setTitle(cfg.title||'&amp;#160;');
355         }
356
357         if (!me.rendered) {
358             me.width = initialWidth;
359             me.render(Ext.getBody());
360         } else {
361             me.hidden = false;
362             me.setSize(initialWidth, me.maxHeight);
363         }
364         me.setPosition(-10000, -10000);
365
366         // Hide or show the close tool
367         me.closable = cfg.closable &amp;&amp; !cfg.wait;
368         if (cfg.closable === false) {
369             me.tools.close.hide();
370         } else {
371             me.tools.close.show();
372         }
373
374         // Hide or show the header
375         if (!cfg.title &amp;&amp; !me.closable) {
376             me.header.hide();
377         } else {
378             me.header.show();
379         }
380
381         // Default to dynamic drag: drag the window, not a ghost
382         me.liveDrag = !cfg.proxyDrag;
383
384         // wrap the user callback
385         me.userCallback = Ext.Function.bind(cfg.callback ||cfg.fn || Ext.emptyFn, cfg.scope || Ext.global);
386
387         // Hide or show the icon Component
388         me.setIcon(cfg.icon);
389
390         // Hide or show the message area
391         if (cfg.msg) {
392             me.msg.update(cfg.msg);
393             me.msg.show();
394         } else {
395             me.msg.hide();
396         }
397
398         // Hide or show the input field
399         if (cfg.prompt || cfg.multiline) {
400             me.multiline = cfg.multiline;
401             if (cfg.multiline) {
402                 me.textArea.setValue(cfg.value);
403                 me.textArea.setHeight(cfg.defaultTextHeight || me.defaultTextHeight);
404                 me.textArea.show();
405                 me.textField.hide();
406                 me.defaultFocus = me.textArea;
407             } else {
408                 me.textField.setValue(cfg.value);
409                 me.textArea.hide();
410                 me.textField.show();
411                 me.defaultFocus = me.textField;
412             }
413         } else {
414             me.textArea.hide();
415             me.textField.hide();
416         }
417
418         // Hide or show the progress bar
419         if (cfg.progress || cfg.wait) {
420             me.progressBar.show();
421             me.updateProgress(0, cfg.progressText);
422             if(cfg.wait === true){
423                 me.progressBar.wait(cfg.waitConfig);
424             }
425         } else {
426             me.progressBar.hide();
427         }
428
429         // Hide or show buttons depending on flag value sent.
430         for (i = 0; i &lt; 4; i++) {
431             if (buttons &amp; Math.pow(2, i)) {
432
433                 // Default to focus on the first visible button if focus not already set
434                 if (!me.defaultFocus) {
435                     me.defaultFocus = me.msgButtons[i];
436                 }
437                 me.msgButtons[i].show();
438                 hideToolbar = false;
439             } else {
440                 me.msgButtons[i].hide();
441             }
442         }
443
444         // Hide toolbar if no buttons to show
445         if (hideToolbar) {
446             me.bottomTb.hide();
447         } else {
448             me.bottomTb.show();
449         }
450         me.hidden = true;
451     },
452
453 <span id='Ext-window-MessageBox-method-show'>    /**
454 </span>     * Displays a new message box, or reinitializes an existing message box, based on the config options
455      * passed in. All display functions (e.g. prompt, alert, etc.) on MessageBox call this function internally,
456      * although those calls are basic shortcuts and do not support all of the config options allowed here.
457      * @param {Object} config The following config options are supported: &lt;ul&gt;
458      * &lt;li&gt;&lt;b&gt;animateTarget&lt;/b&gt; : String/Element&lt;div class=&quot;sub-desc&quot;&gt;An id or Element from which the message box should animate as it
459      * opens and closes (defaults to undefined)&lt;/div&gt;&lt;/li&gt;
460      * &lt;li&gt;&lt;b&gt;buttons&lt;/b&gt; : Number&lt;div class=&quot;sub-desc&quot;&gt;A bitwise button specifier consisting of the sum of any of the following constants:&lt;ul&gt;
461      * &lt;li&gt;Ext.window.MessageBox.OK&lt;/li&gt;
462      * &lt;li&gt;Ext.window.MessageBox.YES&lt;/li&gt;
463      * &lt;li&gt;Ext.window.MessageBox.NO&lt;/li&gt;
464      * &lt;li&gt;Ext.window.MessageBox.CANCEL&lt;/li&gt;
465      * &lt;/ul&gt;Or false to not show any buttons (defaults to false)&lt;/div&gt;&lt;/li&gt;
466      * &lt;li&gt;&lt;b&gt;closable&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;False to hide the top-right close button (defaults to true). Note that
467      * progress and wait dialogs will ignore this property and always hide the close button as they can only
468      * be closed programmatically.&lt;/div&gt;&lt;/li&gt;
469      * &lt;li&gt;&lt;b&gt;cls&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;A custom CSS class to apply to the message box's container element&lt;/div&gt;&lt;/li&gt;
470      * &lt;li&gt;&lt;b&gt;defaultTextHeight&lt;/b&gt; : Number&lt;div class=&quot;sub-desc&quot;&gt;The default height in pixels of the message box's multiline textarea
471      * if displayed (defaults to 75)&lt;/div&gt;&lt;/li&gt;
472      * &lt;li&gt;&lt;b&gt;fn&lt;/b&gt; : Function&lt;div class=&quot;sub-desc&quot;&gt;A callback function which is called when the dialog is dismissed either
473      * by clicking on the configured buttons, or on the dialog close button, or by pressing
474      * the return button to enter input.
475      * &lt;p&gt;Progress and wait dialogs will ignore this option since they do not respond to user
476      * actions and can only be closed programmatically, so any required function should be called
477      * by the same code after it closes the dialog. Parameters passed:&lt;ul&gt;
478      * &lt;li&gt;&lt;b&gt;buttonId&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;The ID of the button pressed, one of:&lt;div class=&quot;sub-desc&quot;&gt;&lt;ul&gt;
479      * &lt;li&gt;&lt;tt&gt;ok&lt;/tt&gt;&lt;/li&gt;
480      * &lt;li&gt;&lt;tt&gt;yes&lt;/tt&gt;&lt;/li&gt;
481      * &lt;li&gt;&lt;tt&gt;no&lt;/tt&gt;&lt;/li&gt;
482      * &lt;li&gt;&lt;tt&gt;cancel&lt;/tt&gt;&lt;/li&gt;
483      * &lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
484      * &lt;li&gt;&lt;b&gt;text&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;Value of the input field if either &lt;tt&gt;&lt;a href=&quot;#show-option-prompt&quot; ext:member=&quot;show-option-prompt&quot; ext:cls=&quot;Ext.window.MessageBox&quot;&gt;prompt&lt;/a&gt;&lt;/tt&gt;
485      * or &lt;tt&gt;&lt;a href=&quot;#show-option-multiline&quot; ext:member=&quot;show-option-multiline&quot; ext:cls=&quot;Ext.window.MessageBox&quot;&gt;multiline&lt;/a&gt;&lt;/tt&gt; is true&lt;/div&gt;&lt;/li&gt;
486      * &lt;li&gt;&lt;b&gt;opt&lt;/b&gt; : Object&lt;div class=&quot;sub-desc&quot;&gt;The config object passed to show.&lt;/div&gt;&lt;/li&gt;
487      * &lt;/ul&gt;&lt;/p&gt;&lt;/div&gt;&lt;/li&gt;
488      * &lt;li&gt;&lt;b&gt;scope&lt;/b&gt; : Object&lt;div class=&quot;sub-desc&quot;&gt;The scope (&lt;code&gt;this&lt;/code&gt; reference) in which the function will be executed.&lt;/div&gt;&lt;/li&gt;
489      * &lt;li&gt;&lt;b&gt;icon&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;A CSS class that provides a background image to be used as the body icon for the
490      * dialog (e.g. Ext.window.MessageBox.WARNING or 'custom-class') (defaults to '')&lt;/div&gt;&lt;/li&gt;
491      * &lt;li&gt;&lt;b&gt;iconCls&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;The standard {@link Ext.window.Window#iconCls} to
492      * add an optional header icon (defaults to '')&lt;/div&gt;&lt;/li&gt;
493      * &lt;li&gt;&lt;b&gt;maxWidth&lt;/b&gt; : Number&lt;div class=&quot;sub-desc&quot;&gt;The maximum width in pixels of the message box (defaults to 600)&lt;/div&gt;&lt;/li&gt;
494      * &lt;li&gt;&lt;b&gt;minWidth&lt;/b&gt; : Number&lt;div class=&quot;sub-desc&quot;&gt;The minimum width in pixels of the message box (defaults to 100)&lt;/div&gt;&lt;/li&gt;
495      * &lt;li&gt;&lt;b&gt;modal&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;False to allow user interaction with the page while the message box is
496      * displayed (defaults to true)&lt;/div&gt;&lt;/li&gt;
497      * &lt;li&gt;&lt;b&gt;msg&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;A string that will replace the existing message box body text (defaults to the
498      * XHTML-compliant non-breaking space character '&amp;amp;#160;')&lt;/div&gt;&lt;/li&gt;
499      * &lt;li&gt;&lt;a id=&quot;show-option-multiline&quot;&gt;&lt;/a&gt;&lt;b&gt;multiline&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;
500      * True to prompt the user to enter multi-line text (defaults to false)&lt;/div&gt;&lt;/li&gt;
501      * &lt;li&gt;&lt;b&gt;progress&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;True to display a progress bar (defaults to false)&lt;/div&gt;&lt;/li&gt;
502      * &lt;li&gt;&lt;b&gt;progressText&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;The text to display inside the progress bar if progress = true (defaults to '')&lt;/div&gt;&lt;/li&gt;
503      * &lt;li&gt;&lt;a id=&quot;show-option-prompt&quot;&gt;&lt;/a&gt;&lt;b&gt;prompt&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;True to prompt the user to enter single-line text (defaults to false)&lt;/div&gt;&lt;/li&gt;
504      * &lt;li&gt;&lt;b&gt;proxyDrag&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;True to display a lightweight proxy while dragging (defaults to false)&lt;/div&gt;&lt;/li&gt;
505      * &lt;li&gt;&lt;b&gt;title&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;The title text&lt;/div&gt;&lt;/li&gt;
506      * &lt;li&gt;&lt;b&gt;value&lt;/b&gt; : String&lt;div class=&quot;sub-desc&quot;&gt;The string value to set into the active textbox element if displayed&lt;/div&gt;&lt;/li&gt;
507      * &lt;li&gt;&lt;b&gt;wait&lt;/b&gt; : Boolean&lt;div class=&quot;sub-desc&quot;&gt;True to display a progress bar (defaults to false)&lt;/div&gt;&lt;/li&gt;
508      * &lt;li&gt;&lt;b&gt;waitConfig&lt;/b&gt; : Object&lt;div class=&quot;sub-desc&quot;&gt;A {@link Ext.ProgressBar#waitConfig} object (applies only if wait = true)&lt;/div&gt;&lt;/li&gt;
509      * &lt;li&gt;&lt;b&gt;width&lt;/b&gt; : Number&lt;div class=&quot;sub-desc&quot;&gt;The width of the dialog in pixels&lt;/div&gt;&lt;/li&gt;
510      * &lt;/ul&gt;
511      * Example usage:
512      * &lt;pre&gt;&lt;code&gt;
513 Ext.Msg.show({
514 title: 'Address',
515 msg: 'Please enter your address:',
516 width: 300,
517 buttons: Ext.window.MessageBox.OKCANCEL,
518 multiline: true,
519 fn: saveAddress,
520 animateTarget: 'addAddressBtn',
521 icon: Ext.window.MessageBox.INFO
522 });
523 &lt;/code&gt;&lt;/pre&gt;
524      * @return {Ext.window.MessageBox} this
525      */
526     show: function(cfg) {
527         var me = this;
528
529         me.reconfigure(cfg);
530         me.addCls(cfg.cls);
531         if (cfg.animateTarget) {
532             me.doAutoSize(false);
533             me.callParent();
534         } else {
535             me.callParent();
536             me.doAutoSize(true);
537         }
538         return me;
539     },
540
541     afterShow: function(){
542         if (this.animateTarget) {
543             this.center();
544         }
545         this.callParent(arguments);
546     },
547
548     doAutoSize: function(center) {
549         var me = this,
550             icon = me.iconComponent,
551             iconHeight = me.iconHeight;
552
553         if (!Ext.isDefined(me.frameWidth)) {
554             me.frameWidth = me.el.getWidth() - me.body.getWidth();
555         }
556
557         // reset to the original dimensions
558         icon.setHeight(iconHeight);
559
560         // Allow per-invocation override of minWidth
561         me.minWidth = me.cfg.minWidth || Ext.getClass(this).prototype.minWidth;
562
563         // Set best possible size based upon allowing the text to wrap in the maximized Window, and
564         // then constraining it to within the max with. Then adding up constituent element heights.
565         me.topContainer.doLayout();
566         if (Ext.isIE6 || Ext.isIEQuirks) {
567             // In IE quirks, the initial full width of the prompt fields will prevent the container element
568             // from collapsing once sized down, so temporarily force them to a small width. They'll get
569             // layed out to their final width later when setting the final window size.
570             me.textField.setCalculatedSize(9);
571             me.textArea.setCalculatedSize(9);
572         }
573         var width = me.cfg.width || me.msg.getWidth() + icon.getWidth() + 25, /* topContainer's layout padding */
574             height = (me.header.rendered ? me.header.getHeight() : 0) +
575             Math.max(me.promptContainer.getHeight(), icon.getHeight()) +
576             me.progressBar.getHeight() +
577             (me.bottomTb.rendered ? me.bottomTb.getHeight() : 0) + 20 ;/* topContainer's layout padding */
578
579         // Update to the size of the content, this way the text won't wrap under the icon.
580         icon.setHeight(Math.max(iconHeight, me.msg.getHeight()));
581         me.setSize(width + me.frameWidth, height + me.frameWidth);
582         if (center) {
583             me.center();
584         }
585         return me;
586     },
587
588     updateText: function(text) {
589         this.msg.update(text);
590         return this.doAutoSize(true);
591     },
592
593 <span id='Ext-window-MessageBox-method-setIcon'>    /**
594 </span>     * Adds the specified icon to the dialog.  By default, the class 'ext-mb-icon' is applied for default
595      * styling, and the class passed in is expected to supply the background image url. Pass in empty string ('')
596      * to clear any existing icon. This method must be called before the MessageBox is shown.
597      * The following built-in icon classes are supported, but you can also pass in a custom class name:
598      * &lt;pre&gt;
599 Ext.window.MessageBox.INFO
600 Ext.window.MessageBox.WARNING
601 Ext.window.MessageBox.QUESTION
602 Ext.window.MessageBox.ERROR
603      *&lt;/pre&gt;
604      * @param {String} icon A CSS classname specifying the icon's background image url, or empty string to clear the icon
605      * @return {Ext.window.MessageBox} this
606      */
607     setIcon : function(icon) {
608         var me = this;
609         me.iconComponent.removeCls(me.iconCls);
610         if (icon) {
611             me.iconComponent.show();
612             me.iconComponent.addCls(Ext.baseCSSPrefix + 'dlg-icon');
613             me.iconComponent.addCls(me.iconCls = icon);
614         } else {
615             me.iconComponent.removeCls(Ext.baseCSSPrefix + 'dlg-icon');
616             me.iconComponent.hide();
617         }
618         return me;
619     },
620
621 <span id='Ext-window-MessageBox-method-updateProgress'>    /**
622 </span>     * Updates a progress-style message box's text and progress bar. Only relevant on message boxes
623      * initiated via {@link Ext.window.MessageBox#progress} or {@link Ext.window.MessageBox#wait},
624      * or by calling {@link Ext.window.MessageBox#show} with progress: true.
625      * @param {Number} value Any number between 0 and 1 (e.g., .5, defaults to 0)
626      * @param {String} progressText The progress text to display inside the progress bar (defaults to '')
627      * @param {String} msg The message box's body text is replaced with the specified string (defaults to undefined
628      * so that any existing body text will not get overwritten by default unless a new value is passed in)
629      * @return {Ext.window.MessageBox} this
630      */
631     updateProgress : function(value, progressText, msg){
632         this.progressBar.updateProgress(value, progressText);
633         if (msg){
634             this.updateText(msg);
635         }
636         return this;
637     },
638
639     onEsc: function() {
640         if (this.closable !== false) {
641             this.callParent(arguments);
642         }
643     },
644
645 <span id='Ext-window-MessageBox-method-confirm'>    /**
646 </span>     * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's confirm).
647      * If a callback function is passed it will be called after the user clicks either button,
648      * and the id of the button that was clicked will be passed as the only parameter to the callback
649      * (could also be the top-right close button).
650      * @param {String} title The title bar text
651      * @param {String} msg The message box body text
652      * @param {Function} fn (optional) The callback function invoked after the message box is closed
653      * @param {Object} scope (optional) The scope (&lt;code&gt;this&lt;/code&gt; reference) in which the callback is executed. Defaults to the browser wnidow.
654      * @return {Ext.window.MessageBox} this
655      */
656     confirm: function(cfg, msg, fn, scope) {
657         if (Ext.isString(cfg)) {
658             cfg = {
659                 title: cfg,
660                 icon: 'ext-mb-question',
661                 msg: msg,
662                 buttons: this.YESNO,
663                 callback: fn,
664                 scope: scope
665             };
666         }
667         return this.show(cfg);
668     },
669
670 <span id='Ext-window-MessageBox-method-prompt'>    /**
671 </span>     * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to JavaScript's prompt).
672      * The prompt can be a single-line or multi-line textbox.  If a callback function is passed it will be called after the user
673      * clicks either button, and the id of the button that was clicked (could also be the top-right
674      * close button) and the text that was entered will be passed as the two parameters to the callback.
675      * @param {String} title The title bar text
676      * @param {String} msg The message box body text
677      * @param {Function} fn (optional) The callback function invoked after the message box is closed
678      * @param {Object} scope (optional) The scope (&lt;code&gt;this&lt;/code&gt; reference) in which the callback is executed. Defaults to the browser wnidow.
679      * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
680      * property, or the height in pixels to create the textbox (defaults to false / single-line)
681      * @param {String} value (optional) Default value of the text input element (defaults to '')
682      * @return {Ext.window.MessageBox} this
683      */
684     prompt : function(cfg, msg, fn, scope, multiline, value){
685         if (Ext.isString(cfg)) {
686             cfg = {
687                 prompt: true,
688                 title: cfg,
689                 minWidth: this.minPromptWidth,
690                 msg: msg,
691                 buttons: this.OKCANCEL,
692                 callback: fn,
693                 scope: scope,
694                 multiline: multiline,
695                 value: value
696             };
697         }
698         return this.show(cfg);
699     },
700
701 <span id='Ext-window-MessageBox-method-wait'>    /**
702 </span>     * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
703      * interaction while waiting for a long-running process to complete that does not have defined intervals.
704      * You are responsible for closing the message box when the process is complete.
705      * @param {String} msg The message box body text
706      * @param {String} title (optional) The title bar text
707      * @param {Object} config (optional) A {@link Ext.ProgressBar#waitConfig} object
708      * @return {Ext.window.MessageBox} this
709      */
710     wait : function(cfg, title, config){
711         if (Ext.isString(cfg)) {
712             cfg = {
713                 title : title,
714                 msg : cfg,
715                 closable: false,
716                 wait: true,
717                 modal: true,
718                 minWidth: this.minProgressWidth,
719                 waitConfig: config
720             };
721         }
722         return this.show(cfg);
723     },
724
725 <span id='Ext-window-MessageBox-method-alert'>    /**
726 </span>     * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript alert prompt).
727      * If a callback function is passed it will be called after the user clicks the button, and the
728      * id of the button that was clicked will be passed as the only parameter to the callback
729      * (could also be the top-right close button).
730      * @param {String} title The title bar text
731      * @param {String} msg The message box body text
732      * @param {Function} fn (optional) The callback function invoked after the message box is closed
733      * @param {Object} scope (optional) The scope (&lt;code&gt;this&lt;/code&gt; reference) in which the callback is executed. Defaults to the browser wnidow.
734      * @return {Ext.window.MessageBox} this
735      */
736     alert: function(cfg, msg, fn, scope) {
737         if (Ext.isString(cfg)) {
738             cfg = {
739                 title : cfg,
740                 msg : msg,
741                 buttons: this.OK,
742                 fn: fn,
743                 scope : scope,
744                 minWidth: this.minWidth
745             };
746         }
747         return this.show(cfg);
748     },
749
750 <span id='Ext-window-MessageBox-method-progress'>    /**
751 </span>     * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
752      * the user.  You are responsible for updating the progress bar as needed via {@link Ext.window.MessageBox#updateProgress}
753      * and closing the message box when the process is complete.
754      * @param {String} title The title bar text
755      * @param {String} msg The message box body text
756      * @param {String} progressText (optional) The text to display inside the progress bar (defaults to '')
757      * @return {Ext.window.MessageBox} this
758      */
759     progress : function(cfg, msg, progressText){
760         if (Ext.isString(cfg)) {
761             cfg = {
762                 title: cfg,
763                 msg: msg,
764                 progressText: progressText
765             };
766         }
767         return this.show(cfg);
768     }
769 }, function() {
770     Ext.MessageBox = Ext.Msg = new this();
771 });</pre>
772 </body>
773 </html>