diff options
| author | wei <> | 2006-01-16 05:24:58 +0000 | 
|---|---|---|
| committer | wei <> | 2006-01-16 05:24:58 +0000 | 
| commit | 6da2f379b1b4ddd0c27db2185ca7408b43a9a97a (patch) | |
| tree | 22bf32c844fa78987c1c37ff2ff9d328156dfd29 /framework/Web/UI/TClientScriptManager.php | |
| parent | 443d8a9de12f1feb7bc6a3275ad3e09cb6e28640 (diff) | |
Diffstat (limited to 'framework/Web/UI/TClientScriptManager.php')
| -rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index acbe7f20..c5b828dc 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -249,7 +249,7 @@ class TClientScriptManager extends TComponent  			$this->_postBackScriptRegistered=true;  			$this->registerHiddenField(TPage::FIELD_POSTBACK_TARGET,'');  			$this->registerHiddenField(TPage::FIELD_POSTBACK_PARAMETER,''); -			$this->registerPradoScript('base'); +			$this->registerPradoScript('prado');  		}  	} @@ -258,7 +258,7 @@ class TClientScriptManager extends TComponent  		if(!$this->_focusScriptRegistered)  		{  			$this->_focusScriptRegistered=true; -			$this->registerPradoScript('base'); +			$this->registerPradoScript('prado');  			$this->registerEndScript('prado:focus','Prado.Focus.setFocus("'.THttpUtility::quoteJavaScriptString($target).'");');  		}  	} @@ -274,10 +274,12 @@ class TClientScriptManager extends TComponent  		}  	} -	public function registerDefaultButtonScript($button) +	public function registerDefaultButtonScript($source, $target)  	{  		$this->registerPradoScript('prado'); -		return 'return Prado.Button.fireButton(event,\''.$button->getClientID().'\')'; +		$button = $target->getClientID(); +		$panel = $source->getClientID(); +		return "Event.observe('{$panel}', 'keypress', Prado.Button.fireButton.bindEvent($('{$panel}'), '$button'));";  	}  	public function registerValidationScript() | 
