GridView row as link, except action column items in Yii2

后端 未结 8 2077
忘了有多久
忘了有多久 2021-01-02 06:20

When i use the below code it overrides the action-column delete/update links.

\'rowOptions\' => function ($model, $key, $index, $grid) {
    return [
             


        
8条回答
  •  盖世英雄少女心
    2021-01-02 07:01

    [
        'attribute'=>'website',
        'format' => 'raw',
        'value'=>function ($data) {
        $wsite = Agents::find()
                 ->all();
        return Html::a(Html::encode($wsite[0]->website), $wsite[0]->website);
         },
        'label'=>'Website',
        'vAlign'=>'middle',
        'width'=>'150px',             
    ],
    

提交回复
热议问题