用于排序标题的特殊网格标题样式(yii2)

时间:2015-04-23 18:03:03

标签: grid yii2

我想在Grid中的排序列中添加一些额外的HTML:

<th>Simple column</th>
<th>Column with sorting <span class="asc"></span></th>

我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

使用encodeLabel这样的属性:

....
            [                
                'label' => 'Your label <span class="asc"></span>',
                'encodeLabel' => false,
                'attribute' => 'description', // your field            
            ],
.....

请参阅doc,您必须使用Yii 2.0.1版本。