I have a simple grid and need to apply some formatting from the server onto the rendering:
This code below doesn't do any formatting strange, it just displays the value:
Is there another way to apply this server function to the MarketValue ?
This code below doesn't do any formatting strange, it just displays the value:
columns.Bound(e => e.MarketValue).Title("Mkt. Value ($)")
.Template(@<
text
>@Formatters.FormatCurrency(item.MarketValue)</
text
>)