How To Setup Pagination To Use Normal Linksinstead Of Ajax Sub Requests

Hello,

I need to set the pager for CListView not using ajax requests to load new pages. I want to have a normal links in the pager without any ajax on it.

Is it possible and how I can turn this on for my CListView.

Dear Friend

We have to declare the property ajaxUpdate as false.




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

	'dataProvider'=>$dataProvider,

	'itemView'=>'_view',

	'ajaxUpdate'=>false,

));



Regards.

Thanks a lot!