From 722475ac7d618893c1bf43b075c01ac20d803cba Mon Sep 17 00:00:00 2001 From: Alan Date: Fri, 15 Jul 2022 10:04:58 +0800 Subject: [PATCH] increase time limit on download --- Pman.Gnumeric.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Pman.Gnumeric.js b/Pman.Gnumeric.js index d5819161..d5cf6b1b 100644 --- a/Pman.Gnumeric.js +++ b/Pman.Gnumeric.js @@ -1716,10 +1716,10 @@ Roo.extend(Pman.Gnumeric, Roo.util.Observable, { } var ser = new XMLSerializer(); - Roo.get(document.body).mask("Downloading"); + Roo.get(document.body).mask("Downloading"); var x = new Pman.Download({ method: 'POST', - timeout : 120000, // quite a long wait.. 2 minutes. + timeout :240000, // quite a long wait.. 2 minutes. params : { xml : ser.serializeToString(this.doc), format : this.format, @@ -1728,16 +1728,16 @@ Roo.extend(Pman.Gnumeric, Roo.util.Observable, { }, url : (this.downloadURL || (baseURL + '/GnumericToExcel/')) + name + '.xls', success : function() { - Roo.get(document.body).unmask(); + Roo.get(document.body).unmask(); Roo.MessageBox.alert("Alert", "File should have downloaded now"); if (callback) { callback(); } }, - failure : function() { - Roo.get(document.body).unmask(); - Roo.MessageBox.alert("Alert", "Download failed"); - } + failure : function() { + Roo.get(document.body).unmask(); + Roo.MessageBox.alert("Alert", "Download failed"); + } }); } -- 2.39.2