X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=docs.old%2Fsymbols%2Fsrc%2FRoo_bootstrap_Progress.js.html;fp=docs.old%2Fsymbols%2Fsrc%2FRoo_bootstrap_Progress.js.html;h=9f99044b84e8c4e5334095db50f932291285c004;hp=0000000000000000000000000000000000000000;hb=c1c0168c0e693c4262f3f744a82419f9d9b1807f;hpb=b282409b66344f6d0ff1999b55639cfd80097128 diff --git a/docs.old/symbols/src/Roo_bootstrap_Progress.js.html b/docs.old/symbols/src/Roo_bootstrap_Progress.js.html new file mode 100644 index 0000000000..9f99044b84 --- /dev/null +++ b/docs.old/symbols/src/Roo_bootstrap_Progress.js.html @@ -0,0 +1,53 @@ +../roojs1/Roo/bootstrap/Progress.js/* + * - LGPL + * + * Progress + * + */ + +/** + * @class Roo.bootstrap.Progress + * @extends Roo.bootstrap.Component + * Bootstrap Progress class + * @cfg {Boolean} striped striped of the progress bar + * @cfg {Boolean} active animated of the progress bar + * + * + * @constructor + * Create a new Progress + * @param {Object} config The config object + */ + +Roo.bootstrap.Progress = function(config){ + Roo.bootstrap.Progress.superclass.constructor.call(this, config); +}; + +Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component, { + + striped : false, + active: false, + + getAutoCreate : function(){ + var cfg = { + tag: 'div', + cls: 'progress' + }; + + + if(this.striped){ + cfg.cls += ' progress-striped'; + } + + if(this.active){ + cfg.cls += ' active'; + } + + + return cfg; + } + +}); + + + + \ No newline at end of file