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