358e219622c31fcff35b4a38334279f807178645
[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  * 
13  * @constructor
14  * Create a new Row
15  * @param {Object} config The config object
16  */
17
18 Roo.bootstrap.Row = function(config){
19     Roo.bootstrap.Row.superclass.constructor.call(this, config);
20 };
21
22 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
23     
24     getAutoCreate : function(){
25        return {
26             cls: 'row clearfix'
27        };
28     }
29     
30     
31 });
32
33  
34
35