how to set width image in gridview widget in yii2?
I\'ve been using this method to display the image. Image in gridview in yii2
Use
'format' => ['image',['width'=>'100','height'=>'100']],
example:
[ 'attribute' => 'image', 'format' => ['image',['width'=>'100','height'=>'100']], 'value' => function($dataProvider) { return $dataProvide->image; }, ],