How do I format the aggregate value for a column in ui-grid?
With my numbers I get something horrible like
total: 6370.046074130321
when I would like
total: $6370.05
I tried both:
footerCellTemplate: '<div class="ui-grid-cell-contents" >{{COL_FIELD | currency}}</div>',
and
footerCellTemplate: '<div class="ui-grid-cell-contents" >{{grid.getCellValue(row, col) | currency}}</div>',
but none of them work.