怜晚情之泪 2016-11-30 15:10:05 4567次浏览 1条评论 3 1 0

添加新按钮

Glyphicons 字体图标 连接地址 http://v3.bootcss.com/components/

[
    'class' => 'yii\grid\ActionColumn',
    'header' => '操作',
    'template' => '{view} {update} {delete}{rechange}{buy}',
    'buttons' => [
           'rechange' => function ($url, $model, $key) {
            return Html::a('<span class="glyphicon glyphicon-usd"></span>', $url, ['title' => '充值'] );
        },
           'buy' => function ($url, $model, $key) {
            return Html::a('<span class="glyphicon glyphicon-shopping-cart"></span>', $url, ['title' => '购买课时'] );

        },
    ],

],

1.png

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