在gridview yii2中设置宽度图像

Adi*_*rma 8 php gridview image yii2

如何在yii2中的gridview小部件中设置宽度图像?

我一直在使用这种方法来显示图像. 在yii2中的gridview中的图像

Ale*_*lex 13

您可以在示例中为单元格定义类

[
    'attribute' => 'title',
    'format' => 'image',
    'value' => function($data) { return 'you_image.jpeg'; },
    'contentOptions' => ['class' => 'come-class']
],
Run Code Online (Sandbox Code Playgroud)

然后使用css设置图像宽度.如果图像宽度可能不同,请使用html格式

[
    'attribute' => 'title',
    'format' => 'html',
    'value' => function($data) { return Html::img('you_image.jpeg', ['width'=>'100']); },
],
Run Code Online (Sandbox Code Playgroud)