DataObjects/core.sql
[Pman.Core] / Pman.Download.js
index 9a17844..3057f14 100644 (file)
@@ -28,10 +28,11 @@ var t = new Pman.Download({
 
 Pman.Download = function(cfg)
 {
-    Roo.apply(this, cfg);
-    cfg = this;
     
+    this.params = {};
+    
+    Roo.apply(this, cfg);
+     
     if (this.grid) {
         
         this.buildFromGrid();
@@ -62,7 +63,7 @@ Pman.Download = function(cfg)
     if (this.method == 'GET' && !this.params) {
         (function() {
             submit = true;
-            this.csvFrame.src = this.url;
+            this.csvFrame.src = cfg.url;
             this.cleanup.defer(cfg.timeout || 30000,this);
         }).defer(100, this);
         
@@ -213,21 +214,23 @@ Roo.apply(Pman.Download.prototype, {
     buildFromGrid : function()
     {
         // get the params from beforeLoad
-        this.grid.ds.fireEvent('beforeload', {
+        this.grid.ds.fireEvent('beforeload', this.grid.ds, {
             params : this.params
             
         });
         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;
         
         
     }