我在Yii中有一个项目,其中有一个CGridView
,默认情况下每页显示10条记录。如何将其设置为100条记录?
最佳答案
在 View 中找到呈现CGridView
小部件的位置,然后配置数据提供者的pagination
属性:
$this->widget('zii.widgets.CGridView', array(
'dataProvider' => array(
/* other options for the data provider... */
'pagination' => array('pageSize' => 100),
),
/* other options for the grid view... */
));