获取网格中的绝对行号
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你解决这个问题了吗?如果没有,我为您提供以下解决方案,
基本上您可以从数据提供者访问当前页面和页面大小变量,并使用它来计算整个数据的“行号”。为什么$row + 1?因为 $row 从 0 开始。希望这有帮助:D
Have you solved this? If not, I offer you the following solution
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
也许这会有所帮助:
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