Yii2: Add Icon into Label, Column, GridView

Created on 11 Apr 2014  路  3Comments  路  Source: yiisoft/yii2

Now I cannot to do this:

'label' => '<span class="glyphicon glyphicon-user"></span>',

through:

Html::encode($label);

Can we add option for disabling Html::encode() or doing some thing else?

Most helpful comment

Hi, if you use 'header' => .. for this, column is not sorting, use 'encodeLabel' => false

All 3 comments

Use

 'header' => '<span class="glyphicon glyphicon-user"></span>',

'header' => 'View', this work for me

Hi, if you use 'header' => .. for this, column is not sorting, use 'encodeLabel' => false

Was this page helpful?
0 / 5 - 0 ratings