i like to get the pagination in the CGridView in this format
is there any solution for this. please help me.
in your config should be a strings:
'import'=>array(
'application.components.*',
),
<?php
class LinkPager extends CLinkPager {
public $maxButtonCount=3;
}
$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider'=>$dataProvider,
'pager'=>'LinkPager',
));
By steps above, you creating a new pager class, which is used by CGridView for rendering pager section.