Customise grid view in yii2

前端 未结 5 765
一生所求
一生所求 2021-02-02 08:47

How to remove summary and sorter for a particular grid view in Yii2. In Yii1.1 we can do that by setting the template property. In yii2 how to achieve this?

5条回答
  •  -上瘾入骨i
    2021-02-02 09:47

    Set the paremeter summaryText to empty string:

    array(
        'summaryText' => '',
        'dataProvider' => $model->search(),
    ...
    

提交回复
热议问题