diff options
| author | tof <> | 2008-03-18 09:57:53 +0000 | 
|---|---|---|
| committer | tof <> | 2008-03-18 09:57:53 +0000 | 
| commit | e19ac3ebece43a1e2b7d2c3aa1df1e311da8c7c9 (patch) | |
| tree | bb8d3ad59d7606ca1b9fe3287237e5c3b5b63be5 /framework/Web/UI/ActiveControls/TCallbackClientScript.php | |
| parent | be4b366f59ed4725b893b4e2a1da33413e9740d7 (diff) | |
Fixed a bug in TCallbackClientScript::setStyle method. 
Add a JS function to 'camelize' the styles properties
Diffstat (limited to 'framework/Web/UI/ActiveControls/TCallbackClientScript.php')
| -rw-r--r-- | framework/Web/UI/ActiveControls/TCallbackClientScript.php | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/framework/Web/UI/ActiveControls/TCallbackClientScript.php b/framework/Web/UI/ActiveControls/TCallbackClientScript.php index 523a4b56..4ddb0654 100644 --- a/framework/Web/UI/ActiveControls/TCallbackClientScript.php +++ b/framework/Web/UI/ActiveControls/TCallbackClientScript.php @@ -295,13 +295,8 @@ class TCallbackClientScript extends TApplicationComponent  	 * @param array list of key-value pairs as style property and style value.
  	 */
  	public function setStyle($element, $styles)
 -	{
 -		$s=array(); -		foreach ($styles as $key=>$value) -		{ -			$s[]=$key.": ".$value; -		} -		$this->callClientFunction('Element.setStyle', array($element, $s));
 +	{ +		$this->callClientFunction('Prado.Element.setStyle', array($element, $styles));
  	}
  	/**
 | 
