X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Download.js;h=7037f745721c58e550577f7a35954c30a9d0fe0e;hp=447dd82b12f3b620b75a78518203de373a5ac58a;hb=refs%2Fheads%2Fwip_alan_T5884_add_photo_to_report;hpb=854f4315af03839f8268aaae8dd5c59a61491a22 diff --git a/Pman.Download.js b/Pman.Download.js index 447dd82b..7037f745 100644 --- a/Pman.Download.js +++ b/Pman.Download.js @@ -50,8 +50,8 @@ Pman.Download = function(cfg) if (this.newWindow && this.method == 'GET') { - // as ie seems buggy... - window.open( cfg.url + '?' + Roo.urlEncode(cfg.params || {}), '_blank'); + // as ie seems buggy... + window.open( this.url + '?' + Roo.urlEncode(this.params || {}), '_blank'); return ; } @@ -101,7 +101,7 @@ Pman.Download = function(cfg) // }); // } - + Roo.log(this.params); for(var i in this.params) { var el = this.form.createChild( { @@ -258,7 +258,7 @@ Roo.apply(Pman.Download.prototype, { this.url = this.grid.ds.proxy.conn.url; - this.method = this.grid.ds.proxy.conn.method ; + this.method = this.method || this.grid.ds.proxy.conn.method ; var t = this; // work out the cols @@ -279,8 +279,11 @@ Roo.apply(Pman.Download.prototype, { this.params.limit = this.limit; // do it as a post, as args can get long.. - this.params._get = 1; - this.method = this.method || 'POST'; + + this.method = this.method || 'POST'; + if (this.method == 'POST') { + this.params._get = 1; + } } });