1

我的自定义页脚单元格模板有一些问题。

如您所见,某些列页脚模板没有显示,我有相同的 footerCellTemplate 实现

这是我的 ui 网格 columndef:

{ 
    name: 'TRAN_TYPE', 
    footerCellTemplate: '<div class="ui-grid-cell-contents">Total / Average</div>' 
},
{
    name: "ISSUED", 
    footerCellTemplate: '<div class="ui-grid-cell-contents">{{grid.appScope.Aggregator.AVG_CUST_TIME}}</div>'                
},
{ 
    name: 'SERVED', 
    footerCellTemplate: '<div class="ui-grid-cell-contents" style="background-color: Red;color: White">custom template</div>' 
},
{ 
    name: 'UNPROCESSED', 
    footerCellTemplate: '<div class="ui-grid-cell-contents" style="background-color: Red;color: White">custom template</div>' 
},

任何帮助都会很棒。谢谢!

4

2 回答 2

0

我认为;在 SERVED 和 UNPROCESSED 列中放置 css 属性的(分号)结尾

style="background-color: Red;color: White;" 
于 2016-08-09T14:54:33.583 回答
0

我已经通过刷新网格解决了它。感谢您的回复!

于 2016-08-10T03:52:00.943 回答