Roo/bootstrap/Pagination.js
authorJulian Knowles <julian@roojs.com>
Mon, 27 Jan 2014 06:05:16 +0000 (14:05 +0800)
committerJulian Knowles <julian@roojs.com>
Mon, 27 Jan 2014 06:05:16 +0000 (14:05 +0800)
Roo/bootstrap/Pagination.js

index e69de29..6e5aa02 100644 (file)
@@ -0,0 +1,48 @@
+/*
+ * - 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.Table = function(config){
+    Roo.bootstrap.Table.superclass.constructor.call(this, config);
+};
+
+Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
+    
+    html: false,
+    cls: false,
+    
+    getAutoCreate : function(){
+        var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
+       
+       cfg = {
+           tag: 'table'
+       }
+        if (this.html) {
+            cfg.html=this.html
+        }
+        if (this.cls) {
+            cfg.cls=this.cls
+        }
+       
+        return cfg;
+    }
+   
+});
+
+
\ No newline at end of file