From 6091b82b4892e888092342a188a81832db8765d7 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Sun, 15 May 2011 18:00:04 +0000 Subject: patch for #58 --- framework/Web/UI/WebControls/TWizard.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'framework/Web/UI') diff --git a/framework/Web/UI/WebControls/TWizard.php b/framework/Web/UI/WebControls/TWizard.php index 428b4c80..4252a159 100644 --- a/framework/Web/UI/WebControls/TWizard.php +++ b/framework/Web/UI/WebControls/TWizard.php @@ -954,6 +954,8 @@ class TWizard extends TWebControl implements INamingContainer if($buttonStyle!==null) $style->mergeWith($buttonStyle); $style->apply($button); + if($activeStepType===TWizardStepType::Start) + $this->getPage()->getClientScript()->registerDefaultButton($this, $button); } // apply styles to finish navigation buttons @@ -977,6 +979,8 @@ class TWizard extends TWebControl implements INamingContainer if($buttonStyle!==null) $style->mergeWith($buttonStyle); $style->apply($button); + if($activeStepType===TWizardStepType::Finish) + $this->getPage()->getClientScript()->registerDefaultButton($this, $button); } // apply styles to step navigation buttons @@ -1000,6 +1004,8 @@ class TWizard extends TWebControl implements INamingContainer if($buttonStyle!==null) $style->mergeWith($buttonStyle); $style->apply($button); + if($activeStepType===TWizardStepType::Step) + $this->getPage()->getClientScript()->registerDefaultButton($this, $button); } } -- cgit v1.2.3