diff options
author | ctrlaltca@gmail.com <> | 2011-10-11 07:53:51 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-10-11 07:53:51 +0000 |
commit | 1b237f5c0a50fc3e986ec52fa6771eec0c7c351c (patch) | |
tree | 5bc58919ac7a1726db6faecc401b71201bc4850b /framework/Web/UI | |
parent | a2ffee815dfbd9648629c52bff5be62f266e4c34 (diff) |
TActiveFileUpload: fix when 2 TActiveFileUpload are present in the same page and one of them in inside 2 (o more) nested templates (refs #90)
Diffstat (limited to 'framework/Web/UI')
-rwxr-xr-x | framework/Web/UI/ActiveControls/TActiveFileUpload.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveFileUpload.php b/framework/Web/UI/ActiveControls/TActiveFileUpload.php index 2c85aff0..98a7f422 100755 --- a/framework/Web/UI/ActiveControls/TActiveFileUpload.php +++ b/framework/Web/UI/ActiveControls/TActiveFileUpload.php @@ -97,7 +97,8 @@ class TActiveFileUpload extends TFileUpload implements IActiveControl, ICallback * the invocation of the attached event handlers. * @param TEventParameter event parameter to be passed to the event handlers */ - public function onFileUpload($param){ + public function onFileUpload($param) + { if ($this->_flag->getValue() && $this->getPage()->getIsPostBack() && $param == $this->_target->getUniqueID()){ // save the file so that it will persist past the end of this return. $localName = str_replace('\\', '/', tempnam(Prado::getPathOfNamespace($this->getTempPath()),'')); @@ -217,7 +218,7 @@ EOS; */ public function raisePostDataChangedEvent() { - $this->onFileUpload($this->getPage()->getRequest()->itemAt('tempActiveUploadField')); + $this->onFileUpload($this->getPage()->getRequest()->itemAt('TActiveFileUpload_TargetId')); } protected function pushParamsAndGetToken(TActiveFileUploadCallbackParams $params) |