From 984e793580f8b5a23c3116ecfc5ae83387afa192 Mon Sep 17 00:00:00 2001 From: Julian Knowles Date: Fri, 24 Jan 2014 16:54:23 +0800 Subject: [PATCH] Roo/bootstrap/TableCell.js --- Roo/bootstrap/TableCell.js | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/Roo/bootstrap/TableCell.js b/Roo/bootstrap/TableCell.js index e69de29bb2..a2cca6922b 100644 --- a/Roo/bootstrap/TableCell.js +++ b/Roo/bootstrap/TableCell.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.TableCell = function(config){ + Roo.bootstrap.TableCell.superclass.constructor.call(this, config); +}; + +Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component, { + + getAutoCreate : function(){ + var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this)); + + cfg = { + tag: 'td' + } + + return cfg; + } + +}); + + + + \ No newline at end of file -- 2.39.2