summaryrefslogtreecommitdiff
path: root/framework/Web/Javascripts/source
diff options
context:
space:
mode:
authorrojaro <>2009-11-01 21:10:37 +0000
committerrojaro <>2009-11-01 21:10:37 +0000
commit628c6ec94c81935d9906640829635737276244d7 (patch)
treef55b93c022f92949d5b01ef739345552544e7c17 /framework/Web/Javascripts/source
parentb904a24660f4a4dc5ad73a1cbb9ca6b80314f694 (diff)
merged fix for proper errorhandling when the size of the uploaded file exceeds the limit see http://www.pradosoft.com/forum/index.php?topic=11850.0
Diffstat (limited to 'framework/Web/Javascripts/source')
-rwxr-xr-xframework/Web/Javascripts/source/prado/activefileupload/activefileupload.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js
index 251a3d35..f42a0673 100755
--- a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js
+++ b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js
@@ -37,8 +37,11 @@ Prado.WebUI.TActiveFileUpload = Base.extend(
// set the form to submit in the iframe, submit it, and then reset it.
this.oldtargetID = this.form.target;
+ this.oldFormAction = this.form.action;
+ this.form.action += '?TActiveFileUpload_InputId='+this.options.inputID+'&TActiveFileUpload_TargetId='+this.options.targetID;
this.form.target = this.options.targetID;
this.form.submit();
+ this.form.action = this.oldFormAction;
this.form.target = this.oldtargetID;
},