我想在Grid中的排序列中添加一些额外的HTML:
<th>Simple column</th>
<th>Column with sorting <span class="asc"></span></th>
我怎么能这样做?
答案 0 :(得分:0)
使用encodeLabel
这样的属性:
....
[
'label' => 'Your label <span class="asc"></span>',
'encodeLabel' => false,
'attribute' => 'description', // your field
],
.....
请参阅doc,您必须使用Yii 2.0.1版本。