Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove glyphicon glyphicon-pencil or edit,view,delete button from gridview page in yii2?

enter image description here

How to remove glyph-icon-pencil and glyph-icon trash from particular page in yii2

like image 669
Priyanka Ahire Avatar asked Jan 24 '26 09:01

Priyanka Ahire


1 Answers

You can do with template in actionColumn

 <?= GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'columns' => [
        ['class' => 'yii\grid\SerialColumn'],
        .........
        [
            'class' => 'yii\grid\ActionColumn',
            'template' => '{view} {delete}',
        ],
    ],
]); ?>
like image 116
ScaisEdge Avatar answered Jan 27 '26 01:01

ScaisEdge