获取网格中的绝对行号

发布于 2024-11-04 10:12:25 字数 219 浏览 0 评论 0原文

在 yii 的 CGridView 中,我可以使用 $row 获取当前行号。但这仅返回当前页面内的行索引。我真正需要的是获取所有页面中的绝对行号。

我正在使用 yii,所以我的梦想应该“轻松”实现,所以我希望答案不应该引导我向数据提供程序添加特殊字段或访问寻呼机并获取当前页码,然后乘以数字 bla bla bla 。

谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

将军与妓 2024-11-11 10:12:25

你解决这个问题了吗?如果没有,我为您提供以下解决方案,

$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)',
      ),
    ),
  ));

基本上您可以从数据提供者访问当前页面和页面大小变量,并使用它来计算整个数据的“行号”。为什么$row + 1?因为 $row 从 0 开始。希望这有帮助:D

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

一袭白衣梦中忆 2024-11-11 10:12:25

也许这会有所帮助:
CDataProvider 有一个属性“totalItemCount”,可以使用:

例如:$this->grid->dataProvider->getTotalItemCount();

更多详细信息,请访问: http://www.yiiframework.com/doc/api /1.1/CDataProvider#totalItemCount-detail

Maybe this will help:
CDataProvider has a property "totalItemCount" which can be used:

Ex: $this->grid->dataProvider->getTotalItemCount();

More details at: http://www.yiiframework.com/doc/api/1.1/CDataProvider#totalItemCount-detail

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文