I have some problems on my custom footer cell template.
This is my 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>'
},
Any help would be great. Thanks!