Roo/bootstrap/TableBody.js
authorJulian Knowles <julian@roojs.com>
Fri, 24 Jan 2014 08:53:29 +0000 (16:53 +0800)
committerJulian Knowles <julian@roojs.com>
Fri, 24 Jan 2014 08:53:29 +0000 (16:53 +0800)
Roo/bootstrap/TableBody.js

index e69de29..47dc0ad 100644 (file)
@@ -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.TableBody = function(config){
+    Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
+};
+
+Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
+    
+    getAutoCreate : function(){
+        var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
+       
+       cfg = {
+           tag: 'tbody'
+       }
+       
+        return cfg;
+    }
+   
+});
+
+
\ No newline at end of file