2 questions on this column:
{
field: "RowTotal",
title: "Row Total",
aggregate: ["sum"],
footerTemplate: "Total: #=sum#",
format: "{0:c}",
},
1. Why does column format: "{0:c}", show me Dollars when my regional settings set this to be in Euro?
2. Why does #=sum# (or in fact any aggregate) stop the footer from rendering ?
I get the javascript error that "sum" is not defined.
{
field: "RowTotal",
title: "Row Total",
aggregate: ["sum"],
footerTemplate: "Total: #=sum#",
format: "{0:c}",
},
1. Why does column format: "{0:c}", show me Dollars when my regional settings set this to be in Euro?
2. Why does #=sum# (or in fact any aggregate) stop the footer from rendering ?
I get the javascript error that "sum" is not defined.