Lines Matching defs:SimpleDialog

731     * Dialog, and SimpleDialog.
7661 * SimpleDialog is a simple implementation of Dialog that can be used to
7666 * @class SimpleDialog
7669 * @param {String} el The element ID representing the SimpleDialog
7671 * @param {HTMLElement} el The element representing the SimpleDialog
7673 * the configuration that should be set for this SimpleDialog. See
7676 YAHOO.widget.SimpleDialog = function (el, userConfig) {
7678 YAHOO.widget.SimpleDialog.superclass.constructor.call(this,
7684 SimpleDialog = YAHOO.widget.SimpleDialog,
7687 * Constant representing the SimpleDialog's configuration properties
7712 * @property YAHOO.widget.SimpleDialog.ICON_BLOCK
7717 SimpleDialog.ICON_BLOCK = "blckicon";
7721 * @property YAHOO.widget.SimpleDialog.ICON_ALARM
7726 SimpleDialog.ICON_ALARM = "alrticon";
7730 * @property YAHOO.widget.SimpleDialog.ICON_HELP
7735 SimpleDialog.ICON_HELP = "hlpicon";
7739 * @property YAHOO.widget.SimpleDialog.ICON_INFO
7744 SimpleDialog.ICON_INFO = "infoicon";
7748 * @property YAHOO.widget.SimpleDialog.ICON_WARN
7753 SimpleDialog.ICON_WARN = "warnicon";
7757 * @property YAHOO.widget.SimpleDialog.ICON_TIP
7762 SimpleDialog.ICON_TIP = "tipicon";
7767 * @property YAHOO.widget.SimpleDialog.ICON_CSS_CLASSNAME
7772 SimpleDialog.ICON_CSS_CLASSNAME = "yui-icon";
7775 * Constant representing the default CSS class used for a SimpleDialog
7776 * @property YAHOO.widget.SimpleDialog.CSS_SIMPLEDIALOG
7781 SimpleDialog.CSS_SIMPLEDIALOG = "yui-simple-dialog";
7784 YAHOO.extend(SimpleDialog, YAHOO.widget.Dialog, {
7788 * using the SimpleDialog's Config object (cfg).
7793 SimpleDialog.superclass.initDefaultConfig.call(this);
7798 * Sets the informational icon for the SimpleDialog
7810 * Sets the text for the SimpleDialog
7826 * The SimpleDialog initialization method, which is executed for
7827 * SimpleDialog and all of its subclasses. This method is automatically
7832 * @param {String} el The element ID representing the SimpleDialog
7834 * @param {HTMLElement} el The element representing the SimpleDialog
7837 * SimpleDialog. See configuration documentation for more details.
7846 SimpleDialog.superclass.init.call(this, el/*, userConfig*/);
7848 this.beforeInitEvent.fire(SimpleDialog);
7850 Dom.addClass(this.element, SimpleDialog.CSS_SIMPLEDIALOG);
7864 this.initEvent.fire(SimpleDialog);
7869 * Prepares the SimpleDialog's internal FORM object, creating one if one
7875 SimpleDialog.superclass.registerForm.call(this);
7897 sCSSClass = SimpleDialog.ICON_CSS_CLASSNAME,
7967 * @return {String} The string representation of the SimpleDialog
7970 return "SimpleDialog " + this.id;