Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / src / widgets / MessageBox.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**\r
8  * @class Ext.MessageBox\r
9  * <p>Utility class for generating different styles of message boxes.  The alias Ext.Msg can also be used.<p/>\r
10  * <p>Note that the MessageBox is asynchronous.  Unlike a regular JavaScript <code>alert</code> (which will halt\r
11  * browser execution), showing a MessageBox will not cause the code to stop.  For this reason, if you have code\r
12  * that should only run <em>after</em> some user feedback from the MessageBox, you must use a callback function\r
13  * (see the <code>function</code> parameter for {@link #show} for more details).</p>\r
14  * <p>Example usage:</p>\r
15  *<pre><code>\r
16 // Basic alert:\r
17 Ext.Msg.alert('Status', 'Changes saved successfully.');\r
18 \r
19 // Prompt for user data and process the result using a callback:\r
20 Ext.Msg.prompt('Name', 'Please enter your name:', function(btn, text){\r
21     if (btn == 'ok'){\r
22         // process text value and close...\r
23     }\r
24 });\r
25 \r
26 // Show a dialog using config options:\r
27 Ext.Msg.show({\r
28    title:'Save Changes?',\r
29    msg: 'You are closing a tab that has unsaved changes. Would you like to save your changes?',\r
30    buttons: Ext.Msg.YESNOCANCEL,\r
31    fn: processResult,\r
32    animEl: 'elId',\r
33    icon: Ext.MessageBox.QUESTION\r
34 });\r
35 </code></pre>\r
36  * @singleton\r
37  */\r
38 Ext.MessageBox = function(){\r
39     var dlg, opt, mask, waitTimer,\r
40         bodyEl, msgEl, textboxEl, textareaEl, progressBar, pp, iconEl, spacerEl,\r
41         buttons, activeTextEl, bwidth, bufferIcon = '', iconCls = '';\r
42 \r
43     // private\r
44     var handleButton = function(button){\r
45         if(dlg.isVisible()){\r
46             dlg.hide();\r
47             handleHide();\r
48             Ext.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value, opt], 1);\r
49         }\r
50     };\r
51 \r
52     // private\r
53     var handleHide = function(){\r
54         if(opt && opt.cls){\r
55             dlg.el.removeClass(opt.cls);\r
56         }\r
57         progressBar.reset();\r
58     };\r
59 \r
60     // private\r
61     var handleEsc = function(d, k, e){\r
62         if(opt && opt.closable !== false){\r
63             dlg.hide();\r
64             handleHide();\r
65         }\r
66         if(e){\r
67             e.stopEvent();\r
68         }\r
69     };\r
70 \r
71     // private\r
72     var updateButtons = function(b){\r
73         var width = 0;\r
74         if(!b){\r
75             buttons["ok"].hide();\r
76             buttons["cancel"].hide();\r
77             buttons["yes"].hide();\r
78             buttons["no"].hide();\r
79             return width;\r
80         }\r
81         dlg.footer.dom.style.display = '';\r
82         for(var k in buttons){\r
83             if(!Ext.isFunction(buttons[k])){\r
84                 if(b[k]){\r
85                     buttons[k].show();\r
86                     buttons[k].setText(Ext.isString(b[k]) ? b[k] : Ext.MessageBox.buttonText[k]);\r
87                     width += buttons[k].el.getWidth()+15;\r
88                 }else{\r
89                     buttons[k].hide();\r
90                 }\r
91             }\r
92         }\r
93         return width;\r
94     };\r
95 \r
96     return {\r
97         /**\r
98          * Returns a reference to the underlying {@link Ext.Window} element\r
99          * @return {Ext.Window} The window\r
100          */\r
101         getDialog : function(titleText){\r
102            if(!dlg){\r
103                 dlg = new Ext.Window({\r
104                     autoCreate : true,\r
105                     title:titleText,\r
106                     resizable:false,\r
107                     constrain:true,\r
108                     constrainHeader:true,\r
109                     minimizable : false,\r
110                     maximizable : false,\r
111                     stateful: false,\r
112                     modal: true,\r
113                     shim:true,\r
114                     buttonAlign:"center",\r
115                     width:400,\r
116                     height:100,\r
117                     minHeight: 80,\r
118                     plain:true,\r
119                     footer:true,\r
120                     closable:true,\r
121                     close : function(){\r
122                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){\r
123                             handleButton("no");\r
124                         }else{\r
125                             handleButton("cancel");\r
126                         }\r
127                     }\r
128                 });\r
129                 buttons = {};\r
130                 var bt = this.buttonText;\r
131                 //TODO: refactor this block into a buttons config to pass into the Window constructor\r
132                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));\r
133                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));\r
134                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));\r
135                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));\r
136                 buttons["ok"].hideMode = buttons["yes"].hideMode = buttons["no"].hideMode = buttons["cancel"].hideMode = 'offsets';\r
137                 dlg.render(document.body);\r
138                 dlg.getEl().addClass('x-window-dlg');\r
139                 mask = dlg.mask;\r
140                 bodyEl = dlg.body.createChild({\r
141                     html:'<div class="ext-mb-icon"></div><div class="ext-mb-content"><span class="ext-mb-text"></span><br /><div class="ext-mb-fix-cursor"><input type="text" class="ext-mb-input" /><textarea class="ext-mb-textarea"></textarea></div></div>'\r
142                 });\r
143                 iconEl = Ext.get(bodyEl.dom.firstChild);\r
144                 var contentEl = bodyEl.dom.childNodes[1];\r
145                 msgEl = Ext.get(contentEl.firstChild);\r
146                 textboxEl = Ext.get(contentEl.childNodes[2].firstChild);\r
147                 textboxEl.enableDisplayMode();\r
148                 textboxEl.addKeyListener([10,13], function(){\r
149                     if(dlg.isVisible() && opt && opt.buttons){\r
150                         if(opt.buttons.ok){\r
151                             handleButton("ok");\r
152                         }else if(opt.buttons.yes){\r
153                             handleButton("yes");\r
154                         }\r
155                     }\r
156                 });\r
157                 textareaEl = Ext.get(contentEl.childNodes[2].childNodes[1]);\r
158                 textareaEl.enableDisplayMode();\r
159                 progressBar = new Ext.ProgressBar({\r
160                     renderTo:bodyEl\r
161                 });\r
162                bodyEl.createChild({cls:'x-clear'});\r
163             }\r
164             return dlg;\r
165         },\r
166 \r
167         /**\r
168          * Updates the message box body text\r
169          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to\r
170          * the XHTML-compliant non-breaking space character '&amp;#160;')\r
171          * @return {Ext.MessageBox} this\r
172          */\r
173         updateText : function(text){\r
174             if(!dlg.isVisible() && !opt.width){\r
175                 dlg.setSize(this.maxWidth, 100); // resize first so content is never clipped from previous shows\r
176             }\r
177             msgEl.update(text || '&#160;');\r
178 \r
179             var iw = iconCls != '' ? (iconEl.getWidth() + iconEl.getMargins('lr')) : 0;\r
180             var mw = msgEl.getWidth() + msgEl.getMargins('lr');\r
181             var fw = dlg.getFrameWidth('lr');\r
182             var bw = dlg.body.getFrameWidth('lr');\r
183             if (Ext.isIE && iw > 0){\r
184                 //3 pixels get subtracted in the icon CSS for an IE margin issue,\r
185                 //so we have to add it back here for the overall width to be consistent\r
186                 iw += 3;\r
187             }\r
188             var w = Math.max(Math.min(opt.width || iw+mw+fw+bw, this.maxWidth),\r
189                         Math.max(opt.minWidth || this.minWidth, bwidth || 0));\r
190 \r
191             if(opt.prompt === true){\r
192                 activeTextEl.setWidth(w-iw-fw-bw);\r
193             }\r
194             if(opt.progress === true || opt.wait === true){\r
195                 progressBar.setSize(w-iw-fw-bw);\r
196             }\r
197             if(Ext.isIE && w == bwidth){\r
198                 w += 4; //Add offset when the content width is smaller than the buttons.    \r
199             }\r
200             dlg.setSize(w, 'auto').center();\r
201             return this;\r
202         },\r
203 \r
204         /**\r
205          * Updates a progress-style message box's text and progress bar. Only relevant on message boxes\r
206          * initiated via {@link Ext.MessageBox#progress} or {@link Ext.MessageBox#wait},\r
207          * or by calling {@link Ext.MessageBox#show} with progress: true.\r
208          * @param {Number} value Any number between 0 and 1 (e.g., .5, defaults to 0)\r
209          * @param {String} progressText The progress text to display inside the progress bar (defaults to '')\r
210          * @param {String} msg The message box's body text is replaced with the specified string (defaults to undefined\r
211          * so that any existing body text will not get overwritten by default unless a new value is passed in)\r
212          * @return {Ext.MessageBox} this\r
213          */\r
214         updateProgress : function(value, progressText, msg){\r
215             progressBar.updateProgress(value, progressText);\r
216             if(msg){\r
217                 this.updateText(msg);\r
218             }\r
219             return this;\r
220         },\r
221 \r
222         /**\r
223          * Returns true if the message box is currently displayed\r
224          * @return {Boolean} True if the message box is visible, else false\r
225          */\r
226         isVisible : function(){\r
227             return dlg && dlg.isVisible();\r
228         },\r
229 \r
230         /**\r
231          * Hides the message box if it is displayed\r
232          * @return {Ext.MessageBox} this\r
233          */\r
234         hide : function(){\r
235             var proxy = dlg ? dlg.activeGhost : null;\r
236             if(this.isVisible() || proxy){\r
237                 dlg.hide();\r
238                 handleHide();\r
239                 if (proxy){\r
240                     // unghost is a private function, but i saw no better solution\r
241                     // to fix the locking problem when dragging while it closes\r
242                     dlg.unghost(false, false);\r
243                 } \r
244             }\r
245             return this;\r
246         },\r
247 \r
248         /**\r
249          * Displays a new message box, or reinitializes an existing message box, based on the config options\r
250          * passed in. All display functions (e.g. prompt, alert, etc.) on MessageBox call this function internally,\r
251          * although those calls are basic shortcuts and do not support all of the config options allowed here.\r
252          * @param {Object} config The following config options are supported: <ul>\r
253          * <li><b>animEl</b> : String/Element<div class="sub-desc">An id or Element from which the message box should animate as it\r
254          * opens and closes (defaults to undefined)</div></li>\r
255          * <li><b>buttons</b> : Object/Boolean<div class="sub-desc">A button config object (e.g., Ext.MessageBox.OKCANCEL or {ok:'Foo',\r
256          * cancel:'Bar'}), or false to not show any buttons (defaults to false)</div></li>\r
257          * <li><b>closable</b> : Boolean<div class="sub-desc">False to hide the top-right close button (defaults to true). Note that\r
258          * progress and wait dialogs will ignore this property and always hide the close button as they can only\r
259          * be closed programmatically.</div></li>\r
260          * <li><b>cls</b> : String<div class="sub-desc">A custom CSS class to apply to the message box's container element</div></li>\r
261          * <li><b>defaultTextHeight</b> : Number<div class="sub-desc">The default height in pixels of the message box's multiline textarea\r
262          * if displayed (defaults to 75)</div></li>\r
263          * <li><b>fn</b> : Function<div class="sub-desc">A callback function which is called when the dialog is dismissed either\r
264          * by clicking on the configured buttons, or on the dialog close button, or by pressing\r
265          * the return button to enter input.\r
266          * <p>Progress and wait dialogs will ignore this option since they do not respond to user\r
267          * actions and can only be closed programmatically, so any required function should be called\r
268          * by the same code after it closes the dialog. Parameters passed:<ul>\r
269          * <li><b>buttonId</b> : String<div class="sub-desc">The ID of the button pressed, one of:<div class="sub-desc"><ul>\r
270          * <li><tt>ok</tt></li>\r
271          * <li><tt>yes</tt></li>\r
272          * <li><tt>no</tt></li>\r
273          * <li><tt>cancel</tt></li>\r
274          * </ul></div></div></li>\r
275          * <li><b>text</b> : String<div class="sub-desc">Value of the input field if either <tt><a href="#show-option-prompt" ext:member="show-option-prompt" ext:cls="Ext.MessageBox">prompt</a></tt>\r
276          * or <tt><a href="#show-option-multiline" ext:member="show-option-multiline" ext:cls="Ext.MessageBox">multiline</a></tt> is true</div></li>\r
277          * <li><b>opt</b> : Object<div class="sub-desc">The config object passed to show.</div></li>\r
278          * </ul></p></div></li>\r
279          * <li><b>scope</b> : Object<div class="sub-desc">The scope of the callback function</div></li>\r
280          * <li><b>icon</b> : String<div class="sub-desc">A CSS class that provides a background image to be used as the body icon for the\r
281          * dialog (e.g. Ext.MessageBox.WARNING or 'custom-class') (defaults to '')</div></li>\r
282          * <li><b>iconCls</b> : String<div class="sub-desc">The standard {@link Ext.Window#iconCls} to\r
283          * add an optional header icon (defaults to '')</div></li>\r
284          * <li><b>maxWidth</b> : Number<div class="sub-desc">The maximum width in pixels of the message box (defaults to 600)</div></li>\r
285          * <li><b>minWidth</b> : Number<div class="sub-desc">The minimum width in pixels of the message box (defaults to 100)</div></li>\r
286          * <li><b>modal</b> : Boolean<div class="sub-desc">False to allow user interaction with the page while the message box is\r
287          * displayed (defaults to true)</div></li>\r
288          * <li><b>msg</b> : String<div class="sub-desc">A string that will replace the existing message box body text (defaults to the\r
289          * XHTML-compliant non-breaking space character '&amp;#160;')</div></li>\r
290          * <li><a id="show-option-multiline"></a><b>multiline</b> : Boolean<div class="sub-desc">\r
291          * True to prompt the user to enter multi-line text (defaults to false)</div></li>\r
292          * <li><b>progress</b> : Boolean<div class="sub-desc">True to display a progress bar (defaults to false)</div></li>\r
293          * <li><b>progressText</b> : String<div class="sub-desc">The text to display inside the progress bar if progress = true (defaults to '')</div></li>\r
294          * <li><a id="show-option-prompt"></a><b>prompt</b> : Boolean<div class="sub-desc">True to prompt the user to enter single-line text (defaults to false)</div></li>\r
295          * <li><b>proxyDrag</b> : Boolean<div class="sub-desc">True to display a lightweight proxy while dragging (defaults to false)</div></li>\r
296          * <li><b>title</b> : String<div class="sub-desc">The title text</div></li>\r
297          * <li><b>value</b> : String<div class="sub-desc">The string value to set into the active textbox element if displayed</div></li>\r
298          * <li><b>wait</b> : Boolean<div class="sub-desc">True to display a progress bar (defaults to false)</div></li>\r
299          * <li><b>waitConfig</b> : Object<div class="sub-desc">A {@link Ext.ProgressBar#waitConfig} object (applies only if wait = true)</div></li>\r
300          * <li><b>width</b> : Number<div class="sub-desc">The width of the dialog in pixels</div></li>\r
301          * </ul>\r
302          * Example usage:\r
303          * <pre><code>\r
304 Ext.Msg.show({\r
305    title: 'Address',\r
306    msg: 'Please enter your address:',\r
307    width: 300,\r
308    buttons: Ext.MessageBox.OKCANCEL,\r
309    multiline: true,\r
310    fn: saveAddress,\r
311    animEl: 'addAddressBtn',\r
312    icon: Ext.MessageBox.INFO\r
313 });\r
314 </code></pre>\r
315          * @return {Ext.MessageBox} this\r
316          */\r
317         show : function(options){\r
318             if(this.isVisible()){\r
319                 this.hide();\r
320             }\r
321             opt = options;\r
322             var d = this.getDialog(opt.title || "&#160;");\r
323 \r
324             d.setTitle(opt.title || "&#160;");\r
325             var allowClose = (opt.closable !== false && opt.progress !== true && opt.wait !== true);\r
326             d.tools.close.setDisplayed(allowClose);\r
327             activeTextEl = textboxEl;\r
328             opt.prompt = opt.prompt || (opt.multiline ? true : false);\r
329             if(opt.prompt){\r
330                 if(opt.multiline){\r
331                     textboxEl.hide();\r
332                     textareaEl.show();\r
333                     textareaEl.setHeight(Ext.isNumber(opt.multiline) ? opt.multiline : this.defaultTextHeight);\r
334                     activeTextEl = textareaEl;\r
335                 }else{\r
336                     textboxEl.show();\r
337                     textareaEl.hide();\r
338                 }\r
339             }else{\r
340                 textboxEl.hide();\r
341                 textareaEl.hide();\r
342             }\r
343             activeTextEl.dom.value = opt.value || "";\r
344             if(opt.prompt){\r
345                 d.focusEl = activeTextEl;\r
346             }else{\r
347                 var bs = opt.buttons;\r
348                 var db = null;\r
349                 if(bs && bs.ok){\r
350                     db = buttons["ok"];\r
351                 }else if(bs && bs.yes){\r
352                     db = buttons["yes"];\r
353                 }\r
354                 if (db){\r
355                     d.focusEl = db;\r
356                 }\r
357             }\r
358             if(opt.iconCls){\r
359               d.setIconClass(opt.iconCls);\r
360             }\r
361             this.setIcon(Ext.isDefined(opt.icon) ? opt.icon : bufferIcon);\r
362             bwidth = updateButtons(opt.buttons);\r
363             progressBar.setVisible(opt.progress === true || opt.wait === true);\r
364             this.updateProgress(0, opt.progressText);\r
365             this.updateText(opt.msg);\r
366             if(opt.cls){\r
367                 d.el.addClass(opt.cls);\r
368             }\r
369             d.proxyDrag = opt.proxyDrag === true;\r
370             d.modal = opt.modal !== false;\r
371             d.mask = opt.modal !== false ? mask : false;\r
372             if(!d.isVisible()){\r
373                 // force it to the end of the z-index stack so it gets a cursor in FF\r
374                 document.body.appendChild(dlg.el.dom);\r
375                 d.setAnimateTarget(opt.animEl);\r
376                 d.show(opt.animEl);\r
377             }\r
378 \r
379             //workaround for window internally enabling keymap in afterShow\r
380             d.on('show', function(){\r
381                 if(allowClose === true){\r
382                     d.keyMap.enable();\r
383                 }else{\r
384                     d.keyMap.disable();\r
385                 }\r
386             }, this, {single:true});\r
387 \r
388             if(opt.wait === true){\r
389                 progressBar.wait(opt.waitConfig);\r
390             }\r
391             return this;\r
392         },\r
393 \r
394         /**\r
395          * Adds the specified icon to the dialog.  By default, the class 'ext-mb-icon' is applied for default\r
396          * styling, and the class passed in is expected to supply the background image url. Pass in empty string ('')\r
397          * to clear any existing icon. This method must be called before the MessageBox is shown.\r
398          * The following built-in icon classes are supported, but you can also pass in a custom class name:\r
399          * <pre>\r
400 Ext.MessageBox.INFO\r
401 Ext.MessageBox.WARNING\r
402 Ext.MessageBox.QUESTION\r
403 Ext.MessageBox.ERROR\r
404          *</pre>\r
405          * @param {String} icon A CSS classname specifying the icon's background image url, or empty string to clear the icon\r
406          * @return {Ext.MessageBox} this\r
407          */\r
408         setIcon : function(icon){\r
409             if(!dlg){\r
410                 bufferIcon = icon;\r
411                 return;\r
412             }\r
413             bufferIcon = undefined;\r
414             if(icon && icon != ''){\r
415                 iconEl.removeClass('x-hidden');\r
416                 iconEl.replaceClass(iconCls, icon);\r
417                 bodyEl.addClass('x-dlg-icon');\r
418                 iconCls = icon;\r
419             }else{\r
420                 iconEl.replaceClass(iconCls, 'x-hidden');\r
421                 bodyEl.removeClass('x-dlg-icon');\r
422                 iconCls = '';\r
423             }\r
424             return this;\r
425         },\r
426 \r
427         /**\r
428          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by\r
429          * the user.  You are responsible for updating the progress bar as needed via {@link Ext.MessageBox#updateProgress}\r
430          * and closing the message box when the process is complete.\r
431          * @param {String} title The title bar text\r
432          * @param {String} msg The message box body text\r
433          * @param {String} progressText (optional) The text to display inside the progress bar (defaults to '')\r
434          * @return {Ext.MessageBox} this\r
435          */\r
436         progress : function(title, msg, progressText){\r
437             this.show({\r
438                 title : title,\r
439                 msg : msg,\r
440                 buttons: false,\r
441                 progress:true,\r
442                 closable:false,\r
443                 minWidth: this.minProgressWidth,\r
444                 progressText: progressText\r
445             });\r
446             return this;\r
447         },\r
448 \r
449         /**\r
450          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user\r
451          * interaction while waiting for a long-running process to complete that does not have defined intervals.\r
452          * You are responsible for closing the message box when the process is complete.\r
453          * @param {String} msg The message box body text\r
454          * @param {String} title (optional) The title bar text\r
455          * @param {Object} config (optional) A {@link Ext.ProgressBar#waitConfig} object\r
456          * @return {Ext.MessageBox} this\r
457          */\r
458         wait : function(msg, title, config){\r
459             this.show({\r
460                 title : title,\r
461                 msg : msg,\r
462                 buttons: false,\r
463                 closable:false,\r
464                 wait:true,\r
465                 modal:true,\r
466                 minWidth: this.minProgressWidth,\r
467                 waitConfig: config\r
468             });\r
469             return this;\r
470         },\r
471 \r
472         /**\r
473          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript alert prompt).\r
474          * If a callback function is passed it will be called after the user clicks the button, and the\r
475          * id of the button that was clicked will be passed as the only parameter to the callback\r
476          * (could also be the top-right close button).\r
477          * @param {String} title The title bar text\r
478          * @param {String} msg The message box body text\r
479          * @param {Function} fn (optional) The callback function invoked after the message box is closed\r
480          * @param {Object} scope (optional) The scope of the callback function\r
481          * @return {Ext.MessageBox} this\r
482          */\r
483         alert : function(title, msg, fn, scope){\r
484             this.show({\r
485                 title : title,\r
486                 msg : msg,\r
487                 buttons: this.OK,\r
488                 fn: fn,\r
489                 scope : scope\r
490             });\r
491             return this;\r
492         },\r
493 \r
494         /**\r
495          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's confirm).\r
496          * If a callback function is passed it will be called after the user clicks either button,\r
497          * and the id of the button that was clicked will be passed as the only parameter to the callback\r
498          * (could also be the top-right close button).\r
499          * @param {String} title The title bar text\r
500          * @param {String} msg The message box body text\r
501          * @param {Function} fn (optional) The callback function invoked after the message box is closed\r
502          * @param {Object} scope (optional) The scope of the callback function\r
503          * @return {Ext.MessageBox} this\r
504          */\r
505         confirm : function(title, msg, fn, scope){\r
506             this.show({\r
507                 title : title,\r
508                 msg : msg,\r
509                 buttons: this.YESNO,\r
510                 fn: fn,\r
511                 scope : scope,\r
512                 icon: this.QUESTION\r
513             });\r
514             return this;\r
515         },\r
516 \r
517         /**\r
518          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to JavaScript's prompt).\r
519          * The prompt can be a single-line or multi-line textbox.  If a callback function is passed it will be called after the user\r
520          * clicks either button, and the id of the button that was clicked (could also be the top-right\r
521          * close button) and the text that was entered will be passed as the two parameters to the callback.\r
522          * @param {String} title The title bar text\r
523          * @param {String} msg The message box body text\r
524          * @param {Function} fn (optional) The callback function invoked after the message box is closed\r
525          * @param {Object} scope (optional) The scope of the callback function\r
526          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight\r
527          * property, or the height in pixels to create the textbox (defaults to false / single-line)\r
528          * @param {String} value (optional) Default value of the text input element (defaults to '')\r
529          * @return {Ext.MessageBox} this\r
530          */\r
531         prompt : function(title, msg, fn, scope, multiline, value){\r
532             this.show({\r
533                 title : title,\r
534                 msg : msg,\r
535                 buttons: this.OKCANCEL,\r
536                 fn: fn,\r
537                 minWidth:250,\r
538                 scope : scope,\r
539                 prompt:true,\r
540                 multiline: multiline,\r
541                 value: value\r
542             });\r
543             return this;\r
544         },\r
545 \r
546         /**\r
547          * Button config that displays a single OK button\r
548          * @type Object\r
549          */\r
550         OK : {ok:true},\r
551         /**\r
552          * Button config that displays a single Cancel button\r
553          * @type Object\r
554          */\r
555         CANCEL : {cancel:true},\r
556         /**\r
557          * Button config that displays OK and Cancel buttons\r
558          * @type Object\r
559          */\r
560         OKCANCEL : {ok:true, cancel:true},\r
561         /**\r
562          * Button config that displays Yes and No buttons\r
563          * @type Object\r
564          */\r
565         YESNO : {yes:true, no:true},\r
566         /**\r
567          * Button config that displays Yes, No and Cancel buttons\r
568          * @type Object\r
569          */\r
570         YESNOCANCEL : {yes:true, no:true, cancel:true},\r
571         /**\r
572          * The CSS class that provides the INFO icon image\r
573          * @type String\r
574          */\r
575         INFO : 'ext-mb-info',\r
576         /**\r
577          * The CSS class that provides the WARNING icon image\r
578          * @type String\r
579          */\r
580         WARNING : 'ext-mb-warning',\r
581         /**\r
582          * The CSS class that provides the QUESTION icon image\r
583          * @type String\r
584          */\r
585         QUESTION : 'ext-mb-question',\r
586         /**\r
587          * The CSS class that provides the ERROR icon image\r
588          * @type String\r
589          */\r
590         ERROR : 'ext-mb-error',\r
591 \r
592         /**\r
593          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)\r
594          * @type Number\r
595          */\r
596         defaultTextHeight : 75,\r
597         /**\r
598          * The maximum width in pixels of the message box (defaults to 600)\r
599          * @type Number\r
600          */\r
601         maxWidth : 600,\r
602         /**\r
603          * The minimum width in pixels of the message box (defaults to 100)\r
604          * @type Number\r
605          */\r
606         minWidth : 100,\r
607         /**\r
608          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful\r
609          * for setting a different minimum width than text-only dialogs may need (defaults to 250)\r
610          * @type Number\r
611          */\r
612         minProgressWidth : 250,\r
613         /**\r
614          * An object containing the default button text strings that can be overriden for localized language support.\r
615          * Supported properties are: ok, cancel, yes and no.  Generally you should include a locale-specific\r
616          * resource file for handling language support across the framework.\r
617          * Customize the default text like so: Ext.MessageBox.buttonText.yes = "oui"; //french\r
618          * @type Object\r
619          */\r
620         buttonText : {\r
621             ok : "OK",\r
622             cancel : "Cancel",\r
623             yes : "Yes",\r
624             no : "No"\r
625         }\r
626     };\r
627 }();\r
628 \r
629 /**\r
630  * Shorthand for {@link Ext.MessageBox}\r
631  */\r
632 Ext.Msg = Ext.MessageBox;