Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In yii's CGridView I can get the current row number by using $row. But this returns the row index within the current page only. What I really need is to get the absolute row number among all pages.

I am using yii, so my dreams should come true "easily", so I expect the answer should not guide me to add a special field to the data provider or access the pager and get the current page number and then multiply numbers bla bla bla.

Thanks

share|improve this question
Great question. I'm curious: for what purpose do you need this? I'm guessing it's going to require a little custom code because your problem is located in the DataProvider (it does the pagination, not CGridView). – DV87 Apr 29 '11 at 16:29
@DV98, thanks for your feedback and your info about the DataProvider. I just need to add a sequence number to the grid. Fair enough, huh? – mmonem Apr 29 '11 at 19:07

1 Answer

up vote 13 down vote accepted

Have you solved this? If not, I offer you the following solution

$this->widget(
  'zii.widgets.grid.CGridView',
  array(
    'columns'=>array(
      array(
        'header'=>'No.',
        'value'=>'$this->grid->dataProvider->pagination->currentPage * $this->grid->dataProvider->pagination->pageSize + ($row+1)',
      ),
    ),
  ));

basically you can access the currentpage and pagesize variables from the dataprovider and you use it to calculate the 'row number' for the whole data. Why the $row + 1? because $row starts from 0. Hope this helps :D

share|improve this answer
very helful one thanks @ZaQ – arun May 10 '12 at 12:42

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.