X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Download.js;h=7037f745721c58e550577f7a35954c30a9d0fe0e;hp=87e230e143253a493db53a697fdb6cea7e50beb9;hb=refs%2Fheads%2Fwip_edward_T5851_download_old_offer_sheet;hpb=ad97159cf59ef86f496a44fe272ed80ece6e7a07 diff --git a/Pman.Download.js b/Pman.Download.js index 87e230e1..7037f745 100644 --- a/Pman.Download.js +++ b/Pman.Download.js @@ -22,7 +22,12 @@ var t = new Pman.Download({ * @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 {String} doctype (optional) download PDF to new window -* @cfg {Boolean limit (optional) limit for grid downloads. +* @cfg {Boolean} limit (optional) limit for grid downloads. + + * @cfg {String} csvCols - use '*' to override grid coluns + * @cfg {String} csvTitles - use '*' to override grid coluns + + * @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) @@ -45,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 ; } @@ -86,17 +91,17 @@ Pman.Download = function(cfg) target : this.newWindow ? '_new' : this.csvFrame.id, enctype : 'multipart/form-data' }); - - if(this.doctype == 'pdf'){ - this.pdfEmbed = b.createChild({ - tag: 'embed', - src : this.url, - pluginspage : 'http://www.adobe.com/products/acrobat/readstep2.html', - alt: this.doctype - }); - } - +// +// if(this.doctype == 'pdf'){ +// this.pdfEmbed = b.createChild({ +// tag: 'embed', +// src : this.url, +// pluginspage : 'http://www.adobe.com/products/acrobat/readstep2.html', +// alt: this.doctype +// }); +// } + Roo.log(this.params); for(var i in this.params) { var el = this.form.createChild( { @@ -253,29 +258,32 @@ 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 - Roo.each(this.grid.cm.config, function(c,i) { - t.params['csvCols['+i+']'] = c.dataIndex; - t.params['csvTitles['+i+']'] = c.header; - - }); + if (this.csvCols) { + t.params.csvCols = this.csvCols; + t.params.csvTitles = this.csvTitles; + } else { + + 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'; - - }, - - createPdfEmbed : function() - { + this.method = this.method || 'POST'; + if (this.method == 'POST') { + this.params._get = 1; + } } });