yii - Where can I find the location of view, edit, delete button in Yii2? -


i want delete view, edit, delete's button. cant find location. buttons picture below:

enter image description here https://ibb.co/eixnpa

where can find location of view, edit, delete button in yii2? want edit code. in advance

you can hide 3 follows 1.go views folder 2.find folder name(same of table name) 3.now open folder , find index.php , code below code,and use // hide column.just add // before ['class' => 'yii\grid\actioncolumn'] have shown in code.

<?= gridview::widget([     'dataprovider' => $dataprovider,     'filtermodel' => $searchmodel,     'columns' => [         ['class' => 'yii\grid\serialcolumn'],          'id',         'username',          'address',          'head',          'mobile',         'school',         'manager',          // ['class' => 'yii\grid\actioncolumn'],     ], ]); ?> 

Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -