Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i like to get the pagination in the CGridView in this format

  • normal structure: << < 1 2 3 4 5 6 7 8 9 > >>
  • require structure: << < 4 5 6 > >>

is there any solution for this. please help me.

share|improve this question

1 Answer

up vote 3 down vote accepted

Simple changing CLinkPager

in your config should be a strings:

'import'=>array(
    'application.components.*',
),

Create a file ./protected/components/LinkPager.php

<?php 
class LinkPager extends CLinkPager {
    public $maxButtonCount=3;
}

Then when you use CGridView in your code:

$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.

share|improve this answer
hello @rusalex. can you provide me any example of this. i am poor in yii. – Jaison Justus Oct 11 '11 at 12:29
1  
that should be enough – RusAlex Oct 11 '11 at 12:39
Thats super... thank you alex. thank you very much. – Jaison Justus Oct 11 '11 at 13:05
1  
Note that if you didn't want to make this global, you could also set the maxButtonCount attribute when you define your widget. – ldg Oct 11 '11 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.