Clistview

hallo…

i have a listview named Listpost-grid




$this->widget('zii.widgets.CListView', array(

        'id'=>'listPost-grid',

        'afterAjaxUpdate'=>'function(){'.$reply.'}',

        'template' =>' {summary}{items}{pager}',

        'summaryText' =>'{count} post(s)',  

	'dataProvider'=>$modelPost,

	'itemView'=>'//post/_view',

));



I want to refresh it continous every xx seconds and automaticaly. anyone please help me.

Thanks before :)

Hello, haven’t tested, but try this:





var intervalBetweenUpdates = 10000;


setTimeout(function(){

   $.fn.yiiListView.update('listPost-grid');

}, intervalBetweenUpdates);