YII2:如何在gridview标头中添加ICON

时间:2016-03-14 06:28:12

标签: gridview yii2-advanced-app

如何在GRIDVIEW标题旁添加图标?

像这样的东西。

[
   'attribute' => 'address',
   'format'=>'raw',
   'label'=>'<i class=\"fa fa-map\"><\i>test',
],

1 个答案:

答案 0 :(得分:3)

您应该将DataColumn的'encodeLabel'属性设置为false

        [
            'attribute' => 'address',
            'label' => '<span class="glyphicon glyphicon-star">' ,
            'encodeLabel' => false,
        ],