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:
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
Post a Comment