Roo/bootstrap/TableBody.js
[roojs1] / Roo / bootstrap / TableBody.js
1 /*
2  * - LGPL
3  *
4  * column
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.Column
10  * @extends Roo.bootstrap.Component
11  * Bootstrap Column class
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.TableBody = function(config){
20     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
21 };
22
23 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
24     
25     getAutoCreate : function(){
26         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
27         
28         cfg = {
29             tag: 'tbody'
30         }
31         
32         return cfg;
33     }
34    
35 });
36
37  
38
39