[

'class' => 'yii\grid\ActionColumn',

'header' => 'Html::a('操作')',//表单头

'template' => '{view}{update}{delete}{void}',//操作按钮

'buttons' => [//操作链接

  'void' => function ($url, $model, $key) {

    return $model->status == '1' ? Html::a('<span class="glyphicon glyphicon-user"></span>', $url, ['title' => '设置未无效'] ) : '';

  },

],

'headerOptions' => ['style'=>'text-align:center;'],//表单头居中
'contentOptions' => ['class'=>'text-center'],//表单内容居中

]

yii2自定义操作按钮

相关文章:

  • 2021-11-06
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-04
  • 2021-12-03
  • 2021-12-16
  • 2021-02-27
  • 2021-11-20
  • 2021-06-04
  • 2021-05-15
相关资源
相似解决方案