diff options
| author | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-03 19:33:34 +0100 | 
|---|---|---|
| committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-26 11:42:49 +0100 | 
| commit | 8f389748d555b39d139bc0852e35f2541f4e2cb5 (patch) | |
| tree | 461e6acbf7170540777c1522c3cdfd8b3168ae33 /framework/Web/UI/TClientScriptManager.php | |
| parent | 36f481b48d9777963d063e227a10882d318dc8d8 (diff) | |
Fixed evaluation of end-scripts on callback
Aka: fix js event creation on callbacks
Diffstat (limited to 'framework/Web/UI/TClientScriptManager.php')
| -rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 5f9ea8b4..80a71ea0 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -697,6 +697,22 @@ class TClientScriptManager extends TApplicationComponent  		$writer->write(TJavaScript::renderScriptBlocks($this->_endScripts));  	} +	/** +	 * @param THtmlWriter writer for the rendering purpose +	 */ +	public function renderBeginScriptsCallback($writer) +	{ +		$writer->write(TJavaScript::renderScriptBlocksCallback($this->_beginScripts)); +	} + +	/** +	 * @param THtmlWriter writer for the rendering purpose +	 */ +	public function renderEndScriptsCallback($writer) +	{ +		$writer->write(TJavaScript::renderScriptBlocksCallback($this->_endScripts)); +	} +  	public function renderHiddenFieldsBegin($writer)  	{  		$this->renderHiddenFieldsInt($writer,true); | 
