Roo/bootstrap/TableBody.js
authorJulian Knowles <julian@roojs.com>
Mon, 27 Jan 2014 05:54:34 +0000 (13:54 +0800)
committerJulian Knowles <julian@roojs.com>
Mon, 27 Jan 2014 05:54:34 +0000 (13:54 +0800)
Roo/bootstrap/TableCell.js

Roo/bootstrap/TableBody.js
Roo/bootstrap/TableCell.js

index 47dc0ad..d28f5e7 100644 (file)
@@ -28,6 +28,12 @@ Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
        cfg = {
            tag: 'tbody'
        }
+        if (this.html) {
+            cfg.html=this.html
+        }
+        if (this.cls) {
+            cfg.cls=this.cls
+        }
        
         return cfg;
     }
index a2cca69..4811e7e 100644 (file)
@@ -28,6 +28,12 @@ Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
        cfg = {
            tag: 'td'
        }
+        if (this.html) {
+            cfg.html=this.html
+        }
+        if (this.cls) {
+            cfg.cls=this.cls
+        }
        
         return cfg;
     }