我的自定义页脚单元格模板存在一些问题。
这是我的ui grid 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>'
},
任何帮助都会很棒。谢谢!
答案 0 :(得分:0)
我认为在SERVED和UNPROCESSED列中放入(分号);
css属性的结尾
style="background-color: Red;color: White;"
答案 1 :(得分:0)
我通过刷新网格解决了这个问题。感谢您的回复!