DataObjects/core.sql
[Pman.Core] / Pman.Download.js
index d135280..78999cd 100644 (file)
@@ -20,60 +20,75 @@ var t = new Pman.Download({
 * @cfg {String} url     Location to download from.
 * @cfg {String} method     GET or POST (default GET), POST will create a form, and post that into the hidden frame.
 * @cfg {Boolean} newWindow (optional) download to new window
+* @cfg {Boolean limit (optional) limit for grid downloads.
 * @cfg {Function} success (optional) MAY fire on download completed (fails on attachments)..
-     
+* @cfg {Number} timeout (optional) in milliseconds before it gives up (default 30000 = 30s)
+* @cfg {Roo.grid.Grid} grid (optional) if you want to just download a grid, (without renderers..)
+* 
 */
+
 Pman.Download = function(cfg)
 {
+    
+    this.params = {};
+    
+    Roo.apply(this, cfg);
+     
+    if (this.grid) {
+        
+        this.buildFromGrid();
+        Roo.log(this);
+    }
     
     
-    if (cfg.newWindow) {
+    if (this.newWindow && this.method == 'GET') {
             // as ie seems buggy...
         window.open( cfg.url + '?' + Roo.urlEncode(cfg.params || {}), '_blank');
         return ; 
         
     }
-    Roo.apply(this, cfg);
+   
+    
     
-    var submit = false;
+    this.submit = false;
     this.createCsvFrame();
     
     var requested = 0;
+     
+    Roo.EventManager.on( this.csvFrame, 'load', this.onLoad, this);
     
-   
-    
-    
-    Roo.EventManager.on( this.csvFrame, 'load', cb, this);
     
-    cfg.method = cfg.method || 'GET';
+    //--- simple method..
+    this.method = this.method || 'GET';
     
-    if (cfg.method == 'GET') {
+    if (this.method == 'GET' && !this.params) {
         (function() {
-            submit = true;
+            this.submit = true;
             this.csvFrame.src = cfg.url;
-            this.cleanup.defer(30000,this);
+            //this.cleanup.defer(cfg.timeout || 30000,this);
         }).defer(100, this);
         
        
         return;
     }
     
+    
     Roo.log("creating form?");
     
     var b = Roo.get(document.body);
     this.form = b.createChild({
         tag: 'form',
-        method : 'POST',
-        action : cfg.url,
-        target : this.csvFrame.id,
+        method : this.method,
+        action : this.url,
+        target : this.newWindow ? '_new' : this.csvFrame.id,
         enctype : 'multipart/form-data'
 
 
         
     });
  
-    for(var i in cfg.params) {
+    for(var i in this.params) {
         
         var el = this.form.createChild( {
             ns : 'html',
@@ -81,16 +96,16 @@ Pman.Download = function(cfg)
             
             type: 'hidden',
             name : i,
-            value : cfg.params[i]
+            value : this.params[i]
         });
         
         
     }
     
     (function() {
-        submit = true;
+        this.submit = true;
         this.form.dom.submit();
-        this.cleanup.defer(30000,this);
+        this.cleanup.defer(this.timeout || 30000,this);
     }).defer(100, this);
     
      
@@ -108,10 +123,15 @@ Roo.apply(Pman.Download.prototype, {
     // private
     form : false,
     
+    limit : 9999,
+    
+    newWindow : false,
+    
+    method : 'GET',
+    
     // private..
     createCsvFrame: function()
     {
-        
         if (this.csvFrame) {
             document.body.removeChild(this.csvFrame);
         }
@@ -138,10 +158,11 @@ Roo.apply(Pman.Download.prototype, {
        // if (requested < 2) {
        //     return;
         //} // n
+        Roo.log('onload?');
         if (!this.submit) {
-            return;
+            return false;
         }
-        
+        return false;
       
         var frame = this.csvFrame;
         var success  = true; 
@@ -167,23 +188,26 @@ Roo.apply(Pman.Download.prototype, {
             Roo.log(e.toString());
             Roo.log(e);
         }
-        
+        // we can not actually do anything with the frame... as it may actually still be downloading..
+        return true;
+    
         this.cleanup();
         
         // this will never fire.. see 
         // http://www.atalasoft.com/cs/blogs/jake/archive/2009/08/18/events-to-expect-when-dynamically-loading-iframes-in-javascript-take-2-thanks-firefox-3-5.aspx
-        if (cfg.success && success) {
+        if (this.success && success) {
             
-            cfg.success();
+            this.success();
         }
-       
+        return false;
         
 
-    }
+    },
     
     // private - clean up download elements.
     cleanup :function()
     {
+        Roo.log('cleanup?');
         if (this.form) {
             this.form.remove();
             this.form= false;
@@ -196,7 +220,54 @@ Roo.apply(Pman.Download.prototype, {
             this.csvFrame= false;
         }
          
+    },
+    
+    buildFromGrid : function()
+    {
+        // get the params from beforeLoad
+        var ds = this.grid.ds;
+        ds.fireEvent('beforeload', ds, {
+            params : this.params
+            
+        });
+        
+         if(ds.sortInfo && ds.remoteSort){
+            var pn = ds.paramNames;
+            this.params[pn["sort"]] = ds.sortInfo.field;
+            this.params[pn["dir"]] = ds.sortInfo.direction;
+        }
+        if (ds.multiSort) {
+            var pn = ds.paramNames;
+            this.params[pn["multisort"]] = Roo.encode( { sort : ds.sortToggle, order: ds.sortOrder });
+        }
+        
+        
+        
+        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) {
+            t.params['csvCols['+i+']'] = c.dataIndex;
+            t.params['csvTitles['+i+']'] = c.header;
+            
+        });
+        
+        if (this.grid.loadMask) {
+            this.grid.loadMask.onLoad();
+        }
+        this.params.limit = this.limit;
+        
+        // do it as a post, as args can get long..
+        this.params._get = 1;
+        this.method = 'POST';
+        
     }
+    
+    
+    
+    
+    
      
      
-});
\ No newline at end of file
+});