Configure the pager of CGridView

Tried this, in order to change the number of hits on each page, with no results:


	<?php $this->widget('zii.widgets.grid.CGridView', array(

	'id'=>'x-grid',

	'dataProvider'=>$x->search(),

	'filter'=>$x,

	'columns'=>array(

                ...

	),

	

	'pager' => array(

		'class' => 'CLinkPager',

		'pageSize' => 5,

	),

)); ?>

try this:




 <?php 

 $dataProvider=$x->search();

 $dataProvider->pagination->pageSize=5;

 

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

        'id'=>'x-grid',

        'dataProvider'=>$dataProvider,

        'filter'=>$x,

        'columns'=>array(

                ...

        ), 

)); ?>