The X Toolkit API

X.progressbar

This class has no public members.

/**
* Create a progress bar.
*
* @constructor
* @param {?Element} parent The parent element in the DOM tree.
* @param {!number} initialvalue An initial value for this progress bar.
* @extends goog.ui.ProgressBar
*/
var p = new X.progressbar();
/**
* The className of this class.
*
* @type {string}
* @protected
*/
p._classname = $_CLASSNAME;
/**
* The collection of CSS definitions.
*
* @type {!Array}
* @protected
*/
p._css = $_CSS;
/**
* A green, full progressBar to replace this one once it's done.
*
* @type {?X.progressbar}
* @protected
*/
p._doneProgressBar = $_DONEPROGRESSBAR;
/**
* The parent element in the DOM tree of this progress bar.
*
* @type {?Element}
* @protected
*/
p._parent = $_PARENT;
/**
* The original position style setting of the parent.
*
* @type {string}
* @protected
*/
p._parent_position_original = $_PARENT_POSITION_ORIGINAL;
/**
* The element for the CSS style of this progress bar.
*
* @type {?Element}
* @protected
*/
p._style = $_STYLE;
/**
* Display a green, full progress bar.
*/
p.done();
/**
* Internal function to initialize the progress bar which gets called by the
* constructor.
*
* @private
*/
p.init_();
/**
* Remove the progress bar from the document.
*/
p.kill();


CONSTRUCTORS
X.progressbar

PROPERTIES
_classname
_css
_doneProgressBar
_parent
_parent_position_original
_style

GETTERS/SETTERS

FUNCTIONS
done
init_
kill

STATIC



SOURCECODE