Set width image in gridview yii2

前端 未结 3 660
情书的邮戳
情书的邮戳 2021-02-15 16:49

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

3条回答
  •  北海茫月
    2021-02-15 16:56

    Use:

    'value' => function($data) {
            return Html::img($data->imageurl,['width'=>100]);
       },
    

    And in your model:

      /*
        Return Image url path
      */
       public function getimageurl()
       {
          // return your image url here
          return \Yii::$app->request->BaseUrl.'/uploads/'.$this->ImagePath;
       }
    

提交回复
热议问题