summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2006-04-17 21:32:48 +0000
committerxue <>2006-04-17 21:32:48 +0000
commit0f2b34ef1ad76d94f43062f396b7a63e76051659 (patch)
tree5a98df811c89203a80efe9493b06ea690a22c2ed /framework
parentf3527efd018da03528bd754c654d70506c8b5491 (diff)
Fixed a bug about control's visibility.
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/UI/TControl.php2
-rw-r--r--framework/Web/UI/WebControls/TWizard.php2
2 files changed, 3 insertions, 1 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php
index 2a3a6a30..3fe34a4c 100644
--- a/framework/Web/UI/TControl.php
+++ b/framework/Web/UI/TControl.php
@@ -491,7 +491,7 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable
if($checkParents)
{
for($control=$this;$control;$control=$control->_parent)
- if(!$control->getViewState('Visible',true))
+ if(!$control->getVisible(false))
return false;
return true;
}
diff --git a/framework/Web/UI/WebControls/TWizard.php b/framework/Web/UI/WebControls/TWizard.php
index fd849d3d..67b84ccd 100644
--- a/framework/Web/UI/WebControls/TWizard.php
+++ b/framework/Web/UI/WebControls/TWizard.php
@@ -1293,6 +1293,8 @@ class TWizard extends TWebControl implements INamingContainer
$type=$this->getStepType($this->getActiveStep());
$index=$this->getActiveStepIndex();
$navParam=new TWizardNavigationEventParameter($index);
+ if($sender->canGetProperty('CausesValidation') && $sender->getCausesValidation() && ($page=$this->getPage())!==null && !$page->getIsValid())
+ $navParam->setCancelNavigation(true);
$handled=false;
$movePrev=false;