I am extending CGridView in Yii using jQuery to remember the checked rows when switching pages. The pages are loaded using AJAX, so i thought that when the request is finished and the new page is rendered, i want my code to step in an do it's magic. However, i can't seem to find any documentation that indicates any event being fired or so when the new page is finished rendering.
I could however use DOM listeners but i figured it would be better to use one event for the whole page.
I am extending CGridView in Yii using jQuery to remember the checked rows when switching pages. The pages are loaded using AJAX, so i thought that when the request is finished and the new page is rendered, i want my code to step in an do it's magic. However, i can't seem to find any documentation that indicates any event being fired or so when the new page is finished rendering.
I could however use DOM listeners but i figured it would be better to use one event for the whole page.
Share Improve this question asked Feb 12, 2013 at 17:34 Anton GildebrandAnton Gildebrand 3,71713 gold badges52 silver badges92 bronze badges1 Answer
Reset to default 13You can use afterAjaxUpdate
(since your pages are loaded with ajax):
$this->widget('zii.widgets.grid.CGridView', array(
// ... options ...
'ajaxUpdate'=>true,
'afterAjaxUpdate'=>'aFunctionThatWillBeCalled', //
// ... more options ...
));
You can add the js function like so:
Yii::app()->clientScript->registerScript('some-script-id','function aFunctionThatWillBeCalled(id, data){
console.log("id is "+id);
// your jquery code to remember checked rows
}');