diff options
Diffstat (limited to 'framework/Web/UI/ActiveControls/TBaseActiveControl.php')
-rw-r--r-- | framework/Web/UI/ActiveControls/TBaseActiveControl.php | 5 |
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());
}
}
|