dialog.js
No description.

File Location

/goog/ui/dialog.js

Classes

goog.ui.Dialog
Class for showing simple dialog boxes. The Html structure of the dialog box is:
 Element         Function                Class-name, modal-dialog = default
----------------------------------------------------------------------------
- iframe         Iframe mask              modal-dialog-bg
- div            Background mask          modal-dialog-bg
- div            Dialog area              modal-dialog
    - div        Title bar                modal-dialog-title
       - span                             modal-dialog-title-text
         - text  Title text               N/A
       - span                             modal-dialog-title-close
         - ??    Close box                N/A
    - div        Content area             modal-dialog-content
       - ??      User specified content   N/A
    - div        Button area              modal-dialog-buttons
       - button                           N/A
       - button
       - ...
goog.ui.Dialog.ButtonSet
A button set defines the behaviour of a set of buttons that the dialog can show. Uses the goog.structs.Map interface.
goog.ui.Dialog.Event
Dialog event class.

Public Protected Private

Enumerations

Global Functions

goog.ui.Dialog.ButtonSet.createContinueSaveCancel() !goog.ui.Dialog.ButtonSet
Creates a new ButtonSet with 'Continue', 'Save', and 'Cancel' (default) buttons.
Returns: !goog.ui.Dialog.ButtonSet  The created ButtonSet.
code »
goog.ui.Dialog.ButtonSet.createOk() !goog.ui.Dialog.ButtonSet
Creates a new ButtonSet with a single 'OK' button, which is also set with cancel button semantics so that pressing escape will close the dialog.
Returns: !goog.ui.Dialog.ButtonSet  The created ButtonSet.
code »
goog.ui.Dialog.ButtonSet.createOkCancel() !goog.ui.Dialog.ButtonSet
Creates a new ButtonSet with 'OK' (default) and 'Cancel' buttons.
Returns: !goog.ui.Dialog.ButtonSet  The created ButtonSet.
code »
goog.ui.Dialog.ButtonSet.createYesNo() !goog.ui.Dialog.ButtonSet
Creates a new ButtonSet with 'Yes' (default) and 'No' buttons.
Returns: !goog.ui.Dialog.ButtonSet  The created ButtonSet.
code »
goog.ui.Dialog.ButtonSet.createYesNoCancel() !goog.ui.Dialog.ButtonSet
Creates a new ButtonSet with 'Yes', 'No' (default), and 'Cancel' buttons.
Returns: !goog.ui.Dialog.ButtonSet  The created ButtonSet.
code »

Global Variables

function%87 :
No description.
Code »

Directory ui

File Reference