Roo/bootstrap/Pagination.js
[roojs1] / Roo / bootstrap / Pagination.js
1 /*
2  * - LGPL
3  *
4  * column
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.Column
10  * @extends Roo.bootstrap.Component
11  * Bootstrap Column class
12  * @cfg {number} colspan  Number of columsn to span
13  * 
14  * @constructor
15  * Create a new Column
16  * @param {Object} config The config object
17  */
18
19 Roo.bootstrap.Pagination = function(config){
20     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
21 };
22
23 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
24     
25     html: false,
26     cls: false,
27     
28     getAutoCreate : function(){
29         cfg = {
30             tag: 'table',
31             cn: []
32         }
33         if (this.html) {
34             cfg.html=this.html
35         }
36         if (this.cls) {
37             cfg.cls=this.cls
38         }
39         
40         return cfg;
41     }
42    
43 });
44
45  
46
47