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

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -