In my attempts to right align, and apply a {0:N} format to the Sum on a ClientFooterTemplate in MVC, I've got this far, but the format is not applied:
It's right aligned now, but still the sum is showing 7 decimal places.
Should I be doing anything to the Aggregate instead of in the ClientFooterTemplate ?
Ideas?
columns.Bound(e => e.BookValue).Title("Book Value ($)") .ClientFooterTemplate("<div class=aright>#=sum#</div>").Format("{0:N}")Should I be doing anything to the Aggregate instead of in the ClientFooterTemplate ?
Ideas?