From 32feb309dc59ca50757431d627db7437c0e29073 Mon Sep 17 00:00:00 2001 From: wei <> Date: Sat, 2 Sep 2006 04:02:56 +0000 Subject: Fixed #211 --- framework/Web/UI/TPage.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'framework/Web/UI/TPage.php') diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index 8c01a501..f3fe7fc9 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -676,6 +676,14 @@ class TPage extends TTemplateControl { if($beforeLoad) $this->_restPostData=new TMap; + //change the post back target + if(($target=$postData[self::FIELD_POSTBACK_TARGET])!==null + && ($control=$this->findControl($target)) + && ($control instanceof IPostBackEventHandler)) + { + $this->_postData->add(self::FIELD_POSTBACK_TARGET,$target); + } + foreach($postData as $key=>$value) { if($this->isSystemPostField($key)) @@ -687,13 +695,17 @@ class TPage extends TTemplateControl if($control->loadPostData($key,$postData)) $this->_controlsPostDataChanged[]=$control; } - else if($control instanceof IPostBackEventHandler) + else if($control instanceof IPostBackEventHandler && + empty($this->_postData[self::FIELD_POSTBACK_TARGET])) + { $this->_postData->add(self::FIELD_POSTBACK_TARGET,$key); // not calling setPostBackEventTarget() because the control may be removed later + } unset($this->_controlsRequiringPostData[$key]); } else if($beforeLoad) $this->_restPostData->add($key,$value); } + foreach($this->_controlsRequiringPostData as $key=>$value) { if($control=$this->findControl($key)) -- cgit v1.2.3