Currently, when applying the DataAnnotation Currency to a property, it then using DisplayFor renders this as the html :
cshtml:
<div>@Html.DisplayFor(m=>m.Price)</div>
html:
<div>$U 4.193,99</div>
How can I change it so the currency symbol is not white-spaced
?
I know I can apply a css to the div for white-space:nowrap; but it would be better if I can just change the currency string format to get :
<div>$U 4.139,99</div>