Roo/bootstrap/Row.js
[roojs1] / Roo / bootstrap / Row.js
1 /*
2  * - LGPL
3  *
4  * row
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.Row
10  * @extends Roo.bootstrap.Component
11  * Bootstrap Row class (contains columns...)
12  * @cfg {number} colspan  Number of columsn to span
13  * 
14  * @constructor
15  * Create a new Column
16  * @param {Object} config The config object
17  */
18
19 Roo.bootstrap.Row = function(config){
20     Roo.bootstrap.Row.superclass.constructor.call(this, config);
21 };
22
23 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
24       
25         autoCreate : {
26         cls: 'row clearfix'
27     }
28  
29    
30 });
31
32  
33
34