DataObjects/core.sql
[Pman.Core] / Pman.Download.js
index 4154cfd..3057f14 100644 (file)
@@ -28,7 +28,9 @@ var t = new Pman.Download({
 
 Pman.Download = function(cfg)
 {
+    
+    this.params = {};
+    
     Roo.apply(this, cfg);
      
     if (this.grid) {
@@ -218,15 +220,17 @@ Roo.apply(Pman.Download.prototype, {
         });
         this.url = this.grid.ds.proxy.conn.url;
         this.method = this.grid.ds.proxy.conn.method ;
-        
+        var t = this;
         // work out the cols
         Roo.each(this.grid.cm.config, function(c,i) {
-            params['csvCols['+i+']'] = c.dataIndex;
-            params['csvTitles['+i+']'] = c.header;
+            t.params['csvCols['+i+']'] = c.dataIndex;
+            t.params['csvTitles['+i+']'] = c.header;
             
         });
-        
-        
+        if (this.grid.loadMask) {
+            this.grid.loadMask.onLoad();
+        }
+        this.params.limit = 9999;
         
         
     }