金色木叶枫 2015-02-03 17:14:59 14922次浏览 5条评论 11 2 0

Yii2.0 GridView 新增添加按钮

今天在项目开发中需要在原有查看,修改,删除的基础上添加一个添加按钮,现将结果贴出来希望对大家有用

<?= GridView::widget([
        'dataProvider' => $dataProvider,
        'filterModel' => $searchModel,
        'columns' => [
            ['class' => 'yii\grid\SerialColumn'],

            'id',
            'parent',
            'lft',
            'rht',
            'name',
            ['class' => 'yii\grid\ActionColumn','header'=>'操作','template' => '{add} {view} {update} {delete}',
                'buttons' => [
                'add' => function ($url, $model, $key) {
                      return  Html::a('<span class="glyphicon glyphicon-plus  btn btn-warning btn-sm"></span>', $url, ['title' => '添加'] ) ;
                     },
                ],
               'headerOptions' => ['width' => '180']
            ],
        ],
]); ?>

原文链接地址

觉得很赞
您需要登录后才可以评论。登录 | 立即注册