X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/docs/output/Ext.MessageBox.html diff --git a/docs/output/Ext.MessageBox.html b/docs/output/Ext.MessageBox.html index 1c3494a0..56ed2f1a 100644 --- a/docs/output/Ext.MessageBox.html +++ b/docs/output/Ext.MessageBox.html @@ -1,47 +1,47 @@ -

Class Ext.MessageBox

Package:Ext
Defined In:MessageBox.js
Class:MessageBox
Extends:Object

Utility class for generating different styles of message boxes. The alias Ext.Msg can also be used.

-

Note that the MessageBox is asynchronous. Unlike a regular JavaScript alert (which will halt -browser execution), showing a MessageBox will not cause the code to stop. For this reason, if you have code -that should only run after some user feedback from the MessageBox, you must use a callback function -(see the function parameter for show for more details).

-

Example usage:

-
// Basic alert:

-Ext.Msg.alert('Status', 'Changes saved successfully.');
-
-// Prompt for user data and process the result using a callback:

-Ext.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
-    if (btn == 'ok'){
-        // process text value and close...

-    }
-});
-
-// Show a dialog using config options:

-Ext.Msg.show({
-   title:'Save Changes?',
-   msg: 'You are closing a tab that has unsaved changes. Would you like to save your changes?',
-   buttons: Ext.Msg.YESNOCANCEL,
-   fn: processResult,
-   animEl: 'elId',
-   icon: Ext.MessageBox.QUESTION
-});


This class is a singleton and cannot be created directly.

Public Properties

PropertyDefined By
 CANCEL : Object
Button config that displays a single Cancel button
MessageBox
 ERROR : String
The CSS class that provides the ERROR icon image
MessageBox
 INFO : String
The CSS class that provides the INFO icon image
MessageBox
 Msg : Object
Shorthand for Ext.MessageBox
MessageBox
 OK : Object
Button config that displays a single OK button
MessageBox
 OKCANCEL : Object
Button config that displays OK and Cancel buttons
MessageBox
 QUESTION : String
The CSS class that provides the QUESTION icon image
MessageBox
 WARNING : String
The CSS class that provides the WARNING icon image
MessageBox
 YESNO : Object
Button config that displays Yes and No buttons
MessageBox
 YESNOCANCEL : Object
Button config that displays Yes, No and Cancel buttons
MessageBox
 defaultTextHeight : Number
The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
MessageBox
 maxWidth : Number
The maximum width in pixels of the message box (defaults to 600)
MessageBox