major doc changes
[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  * @children Roo.bootstrap.Component
12  * Bootstrap Row class (contains columns...)
13  * 
14  * @constructor
15  * Create a new Row
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     getAutoCreate : function(){
26        return {
27             cls: 'row clearfix'
28        };
29     }
30     
31     
32 });
33
34  
35
36