From 171cdc5660915344b5d09e7115c0c0132657005c Mon Sep 17 00:00:00 2001 From: Julian Knowles Date: Fri, 24 Jan 2014 16:52:26 +0800 Subject: [PATCH] Roo/bootstrap/TableRow.js --- Roo/bootstrap/TableRow.js | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/Roo/bootstrap/TableRow.js b/Roo/bootstrap/TableRow.js index e69de29bb2..bb1c41c3c1 100644 --- a/Roo/bootstrap/TableRow.js +++ b/Roo/bootstrap/TableRow.js @@ -0,0 +1,39 @@ +/* + * - LGPL + * + * column + * + */ + +/** + * @class Roo.bootstrap.Column + * @extends Roo.bootstrap.Component + * Bootstrap Column class + * @cfg {number} colspan Number of columsn to span + * + * @constructor + * Create a new Column + * @param {Object} config The config object + */ + +Roo.bootstrap.TableRow = function(config){ + Roo.bootstrap.TableRow.superclass.constructor.call(this, config); +}; + +Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component, { + + getAutoCreate : function(){ + var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this)); + + cfg = { + tag: 'tr' + } + + return cfg; + } + +}); + + + + \ No newline at end of file -- 2.39.2