Lines Matching defs:SimpleDialog

725     * Dialog, and SimpleDialog.
7631 * SimpleDialog is a simple implementation of Dialog that can be used to
7636 * @class SimpleDialog
7639 * @param {String} el The element ID representing the SimpleDialog
7641 * @param {HTMLElement} el The element representing the SimpleDialog
7643 * the configuration that should be set for this SimpleDialog. See
7646 YAHOO.widget.SimpleDialog = function (el, userConfig) {
7648 YAHOO.widget.SimpleDialog.superclass.constructor.call(this,
7654 SimpleDialog = YAHOO.widget.SimpleDialog,
7657 * Constant representing the SimpleDialog's configuration properties
7682 * @property YAHOO.widget.SimpleDialog.ICON_BLOCK
7687 SimpleDialog.ICON_BLOCK = "blckicon";
7691 * @property YAHOO.widget.SimpleDialog.ICON_ALARM
7696 SimpleDialog.ICON_ALARM = "alrticon";
7700 * @property YAHOO.widget.SimpleDialog.ICON_HELP
7705 SimpleDialog.ICON_HELP = "hlpicon";
7709 * @property YAHOO.widget.SimpleDialog.ICON_INFO
7714 SimpleDialog.ICON_INFO = "infoicon";
7718 * @property YAHOO.widget.SimpleDialog.ICON_WARN
7723 SimpleDialog.ICON_WARN = "warnicon";
7727 * @property YAHOO.widget.SimpleDialog.ICON_TIP
7732 SimpleDialog.ICON_TIP = "tipicon";
7737 * @property YAHOO.widget.SimpleDialog.ICON_CSS_CLASSNAME
7742 SimpleDialog.ICON_CSS_CLASSNAME = "yui-icon";
7745 * Constant representing the default CSS class used for a SimpleDialog
7746 * @property YAHOO.widget.SimpleDialog.CSS_SIMPLEDIALOG
7751 SimpleDialog.CSS_SIMPLEDIALOG = "yui-simple-dialog";
7754 YAHOO.extend(SimpleDialog, YAHOO.widget.Dialog, {
7758 * using the SimpleDialog's Config object (cfg).
7763 SimpleDialog.superclass.initDefaultConfig.call(this);
7768 * Sets the informational icon for the SimpleDialog
7780 * Sets the text for the SimpleDialog
7796 * The SimpleDialog initialization method, which is executed for
7797 * SimpleDialog and all of its subclasses. This method is automatically
7802 * @param {String} el The element ID representing the SimpleDialog
7804 * @param {HTMLElement} el The element representing the SimpleDialog
7807 * SimpleDialog. See configuration documentation for more details.
7816 SimpleDialog.superclass.init.call(this, el/*, userConfig*/);
7818 this.beforeInitEvent.fire(SimpleDialog);
7820 Dom.addClass(this.element, SimpleDialog.CSS_SIMPLEDIALOG);
7834 this.initEvent.fire(SimpleDialog);
7839 * Prepares the SimpleDialog's internal FORM object, creating one if one
7845 SimpleDialog.superclass.registerForm.call(this);
7867 sCSSClass = SimpleDialog.ICON_CSS_CLASSNAME,
7937 * @return {String} The string representation of the SimpleDialog
7940 return "SimpleDialog " + this.id;