remove debugging code
[roojs1] / Roo / PagingToolbar.js
index 17765e4..dd1f615 100644 (file)
@@ -27,9 +27,9 @@ Roo.PagingToolbar = function(el, ds, config)
         el = config.container;
     }
     var items = [];
-    if (this.items) {
-        items = this.items;
-        this.items = [];
+    if (config.items) {
+        items = config.items;
+        config.items = [];
     }
     
     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
@@ -39,10 +39,10 @@ Roo.PagingToolbar = function(el, ds, config)
     this.bind(ds);
     
     // supprot items array.
-    var _this = this;
+   
     Roo.each(items, function(e) {
-        _this.add(Roo.factory(e));
-    });
+        this.add(Roo.factory(e));
+    },this);
     
 };
 
@@ -232,8 +232,9 @@ Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
         {
           var v = this.field.dom.value, pageNum; 
           var increment = (e.shiftKey) ? 10 : 1;
-          if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
+          if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
             increment *= -1;
+          }
           if(!v || isNaN(pageNum = parseInt(v, 10))) {
             this.field.dom.value = d.activePage;
             return;