3
我試圖使組頭被示出爲cellTemplate,這是我使用的模板:角UI網格分組報頭
<div class="ui-grid-cell-contents">
<div ng-show="COL_FIELD">
<i class="ace-icon fa fa-check bigger-110 green"></i>
</div>
<div ng-hide="COL_FIELD">
<i class="ace-icon fa fa-times bigger-110 red"></i>
</div>
</div>
,這是columnDefs:
{
name:'active',
width: 100,
cellTemplate: $templateRequest('scripts/common/partials/formatter/boolean.tpl.html')
}
這顯示了當前網格上的符號,但是當我對它進行分組時,它顯示了兩個組都有「檢查」符號「,我發現它發生是因爲組合COL_FIELD是組合計數行的文本(0 (50),1(15)) 這是真的 有沒有好的方法設置組標題currect?