Lines Matching defs:Dialog

731     * Dialog, and SimpleDialog.
6303 * Dialog is an implementation of Panel that can be used to submit form
6310 * @class Dialog
6313 * @param {String} el The element ID representing the Dialog <em>OR</em>
6314 * @param {HTMLElement} el The element representing the Dialog
6316 * the configuration that should be set for this Dialog. See configuration
6319 YAHOO.widget.Dialog = function (el, userConfig) {
6321 YAHOO.widget.Dialog.superclass.constructor.call(this, el, userConfig);
6331 Dialog = YAHOO.widget.Dialog,
6335 * Constant representing the name of the Dialog's events
6353 * Constant representing the Dialog's configuration properties
6375 * Constant representing the default CSS class used for a Dialog
6376 * @property YAHOO.widget.Dialog.CSS_DIALOG
6381 Dialog.CSS_DIALOG = "yui-dialog";
6425 YAHOO.extend(Dialog, YAHOO.widget.Panel, {
6430 * @description Object reference to the Dialog's
6440 * using the Dialog's Config object (cfg).
6444 Dialog.superclass.initDefaultConfig.call(this);
6484 * The method to use for posting the Dialog's form. Possible values
6505 * defining a button to be appended into the Dialog's footer.
6516 * always its Dialog instance.)</li>
6542 * Initializes the custom events for Dialog which are fired
6543 * automatically at appropriate times by the Dialog class.
6547 Dialog.superclass.initEvents.call(this);
6598 * The Dialog initialization method, which is executed for Dialog and
6603 * @param {String} el The element ID representing the Dialog <em>OR</em>
6604 * @param {HTMLElement} el The element representing the Dialog
6606 * containing the configuration that should be set for this Dialog.
6616 Dialog.superclass.init.call(this, el/*, userConfig*/);
6618 this.beforeInitEvent.fire(Dialog);
6620 Dom.addClass(this.element, Dialog.CSS_DIALOG);
6633 this.initEvent.fire(Dialog);
6637 * Submits the Dialog's form depending on the value of the
6640 * asyncronous file uploads should the Dialog instance's form contain
6641 * <code>&#60;input type="file"&#62;</code> elements. If a Dialog
6724 * Prepares the Dialog's internal FORM object, creating one if one is
6864 * icon at the top right of the Dialog.
7056 * @description Returns an array containing each of the Dialog's
7058 * elements. If the Dialog's buttons were created using the
7078 * Sets focus to the first element in the Dialog's form or the first
7080 * when the Dialog is made visible.
7127 * Sets focus to the last element in the Dialog's form or the last
7181 * called when the Dialog is made visible.
7399 * Executes a submit of the Dialog followed by a hide, if validation
7416 * Executes the cancel of the Dialog followed by a hide.
7642 Dialog.superclass.destroy.call(this);
7649 * @return {String} The string representation of the Dialog
7652 return "Dialog " + this.id;
7661 * SimpleDialog is a simple implementation of Dialog that can be used to
7667 * @extends YAHOO.widget.Dialog
7784 YAHOO.extend(SimpleDialog, YAHOO.widget.Dialog, {