From c8e2a7c38c046494153a61a55fbe102937881e98 Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 7 Apr 2014 16:07:47 +0800 Subject: [PATCH] Roo/bootstrap/TableCell.js --- Roo/bootstrap/TableCell.js | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/Roo/bootstrap/TableCell.js b/Roo/bootstrap/TableCell.js index 0704011195..08e8ced8e9 100644 --- a/Roo/bootstrap/TableCell.js +++ b/Roo/bootstrap/TableCell.js @@ -72,6 +72,47 @@ Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component, { if (this.cls) { cfg.cls=this.cls } + + if (this.abbr) { + cfg.abbr=this.abbr + } + if (this.align) { + cfg.align=this.align + } + if (this.axis) { + cfg.axis=this.axis + } + if (this.bgcolor) { + cfg.bgcolor=this.bgcolor + } + if (this.charoff) { + cfg.charoff=this.charoff + } + if (this.colspan) { + cfg.colspan=this.colspan + } + if (this.headers) { + cfg.headers=this.headers + } + if (this.height) { + cfg.height=this.height + } + if (this.nowrap) { + cfg.nowrap=this.nowrap + } + if (this.rowspan) { + cfg.rowspan=this.rowspan + } + if (this.scope) { + cfg.scope=this.scope + } + if (this.valign) { + cfg.valign=this.valign + } + if (this.width) { + cfg.width=this.width + } + return cfg; } -- 2.39.2