Hide Yii2 GridView Action buttons

后端 未结 10 563
失恋的感觉
失恋的感觉 2021-02-03 21:20

I want to hide Yii2 GridView Action Column buttons on the base of model field status. If status is = 1 then hide view button only. How I can?

Code:

              


        
10条回答
  •  野的像风
    2021-02-03 21:40

    you need to add the template propiety ('template'=>'{update} {delete}') to the column arry where you put the options

        'columns' => [
                ['class' => 'yii\grid\SerialColumn'],
                'id', 
                'otherfield'
    ['class' => 'yii\grid\ActionColumn','template'=>'{update} {delete}'],

提交回复
热议问题