Revision #3 has been created by Burzum on Sep 30, 2009, 12:06:47 PM with the memo:
Link error
« previous (#2) next (#4) »
Changes
Title
unchanged
Update content in AJAX with partialRender
Category
unchanged
Tutorials
Yii version
unchanged
Tags
unchanged
Content
changed
[...]
<div id="data">
<?php $this->renderPartial('_ajaxContent', array('myValue'=>$myValue)); ?>
</div>
<?php echo CHtml::ajaxButton ("Update data",
CController::createUrl('helloWorld/UpdateAjax'),
array('update' => '#data'));
?>
```
The ajaxButton call "actionUpdateAjax" and the returned data are inserted in the div "data"[...]