summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TBaseActiveControl.php
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2012-01-11 16:52:08 +0000
committerctrlaltca@gmail.com <>2012-01-11 16:52:08 +0000
commit6031757bc0af6531aff4d33ede11e955b92ae7fa (patch)
tree51d8488f3d4458568ff430332af4a8ba9147bb23 /framework/Web/UI/ActiveControls/TBaseActiveControl.php
parent2a28a51d2453b66fc59084eec945a0452dc670ba (diff)
respect visibility state when updating activecontrols during an ajax callback
Diffstat (limited to 'framework/Web/UI/ActiveControls/TBaseActiveControl.php')
-rw-r--r--framework/Web/UI/ActiveControls/TBaseActiveControl.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Web/UI/ActiveControls/TBaseActiveControl.php b/framework/Web/UI/ActiveControls/TBaseActiveControl.php
index 5dbd030c..180092f2 100644
--- a/framework/Web/UI/ActiveControls/TBaseActiveControl.php
+++ b/framework/Web/UI/ActiveControls/TBaseActiveControl.php
@@ -124,12 +124,13 @@ class TBaseActiveControl extends TComponent
* @return boolean true if the callback response is allowed update
* client-side contents.
*/
- public function canUpdateClientSide()
+ public function canUpdateClientSide($bDontRequireVisibility=false)
{
return $this->getControl()->getHasChildInitialized()
&& $this->getPage()->getIsLoadingPostData() == false
&& $this->getPage()->getIsCallback()
- && $this->getEnableUpdate();
+ && $this->getEnableUpdate()
+ && ($bDontRequireVisibility || $this->getControl()->getVisible());
}
}