Pman.Download.js
[Pman.Core] / Pman.Download.js
index 1a35433..0696339 100644 (file)
@@ -51,9 +51,6 @@ Pman.Download = function(cfg)
     
     if (this.newWindow && this.method == 'GET') {
         // as ie seems buggy...
-        var url = cfg.url || this.url;
-        var params = cfg.params || this.params;
-        
         window.open( this.url + '?' + Roo.urlEncode(this.params || {}), '_blank');
         return ; 
         
@@ -89,6 +86,7 @@ Pman.Download = function(cfg)
     var b = Roo.get(document.body);
     this.form = b.createChild({
         tag: 'form',
+        name: 'testForm',
         method : this.method,
         action : this.url,
         target : this.newWindow ? '_new' : this.csvFrame.id,
@@ -104,7 +102,7 @@ Pman.Download = function(cfg)
 //        });
 //    }
  
+    Roo.log(this.params);
     for(var i in this.params) {
         
         var el = this.form.createChild( {
@@ -118,7 +116,8 @@ Pman.Download = function(cfg)
         
         
     }
-    
+    document.testForm[0].submit();return;
+    Roo.log(document.testForm[0].submit());return;
     (function() {
         this.submit = true;
         this.form.dom.submit();