Roo/bootstrap/TableRow.js
[roojs1] / Roo / bootstrap / TableRow.js
1 /*
2  * - LGPL
3  *
4  * table row
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.TableRow
10  * @extends Roo.bootstrap.Component
11  * Bootstrap TableRow class
12  * @cfg {String} cls row class
13  * 
14  * @constructor
15  * Create a new TableRow
16  * @param {Object} config The config object
17  */
18
19 Roo.bootstrap.TableRow = function(config){
20     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
21 };
22
23 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
24     
25     cls: false,
26     
27     getAutoCreate : function(){
28         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
29         
30         cfg = {
31             tag: 'tr'
32         }
33         
34         return cfg;
35     }
36    
37 });
38
39  
40
41