Lines Matching defs:Dialog

725     * Dialog, and SimpleDialog.
6273 * Dialog is an implementation of Panel that can be used to submit form
6280 * @class Dialog
6283 * @param {String} el The element ID representing the Dialog <em>OR</em>
6284 * @param {HTMLElement} el The element representing the Dialog
6286 * the configuration that should be set for this Dialog. See configuration
6289 YAHOO.widget.Dialog = function (el, userConfig) {
6291 YAHOO.widget.Dialog.superclass.constructor.call(this, el, userConfig);
6301 Dialog = YAHOO.widget.Dialog,
6305 * Constant representing the name of the Dialog's events
6323 * Constant representing the Dialog's configuration properties
6345 * Constant representing the default CSS class used for a Dialog
6346 * @property YAHOO.widget.Dialog.CSS_DIALOG
6351 Dialog.CSS_DIALOG = "yui-dialog";
6395 YAHOO.extend(Dialog, YAHOO.widget.Panel, {
6400 * @description Object reference to the Dialog's
6410 * using the Dialog's Config object (cfg).
6414 Dialog.superclass.initDefaultConfig.call(this);
6454 * The method to use for posting the Dialog's form. Possible values
6475 * defining a button to be appended into the Dialog's footer.
6486 * always its Dialog instance.)</li>
6512 * Initializes the custom events for Dialog which are fired
6513 * automatically at appropriate times by the Dialog class.
6517 Dialog.superclass.initEvents.call(this);
6568 * The Dialog initialization method, which is executed for Dialog and
6573 * @param {String} el The element ID representing the Dialog <em>OR</em>
6574 * @param {HTMLElement} el The element representing the Dialog
6576 * containing the configuration that should be set for this Dialog.
6586 Dialog.superclass.init.call(this, el/*, userConfig*/);
6588 this.beforeInitEvent.fire(Dialog);
6590 Dom.addClass(this.element, Dialog.CSS_DIALOG);
6603 this.initEvent.fire(Dialog);
6607 * Submits the Dialog's form depending on the value of the
6610 * asyncronous file uploads should the Dialog instance's form contain
6611 * <code>&#60;input type="file"&#62;</code> elements. If a Dialog
6694 * Prepares the Dialog's internal FORM object, creating one if one is
6834 * icon at the top right of the Dialog.
7026 * @description Returns an array containing each of the Dialog's
7028 * elements. If the Dialog's buttons were created using the
7048 * Sets focus to the first element in the Dialog's form or the first
7050 * when the Dialog is made visible.
7097 * Sets focus to the last element in the Dialog's form or the last
7151 * called when the Dialog is made visible.
7369 * Executes a submit of the Dialog followed by a hide, if validation
7386 * Executes the cancel of the Dialog followed by a hide.
7612 Dialog.superclass.destroy.call(this);
7619 * @return {String} The string representation of the Dialog
7622 return "Dialog " + this.id;
7631 * SimpleDialog is a simple implementation of Dialog that can be used to
7637 * @extends YAHOO.widget.Dialog
7754 YAHOO.extend(SimpleDialog, YAHOO.widget.Dialog, {