What I would like to do is to convert a value from within a JSON to Double
and apply String.Format("{0:N}", valor_JSON));
so I would be converting 1000 -> 1.000
.
But since it has already been answered you do not have the possibility to do this within View, because C # runs on the server-side. The solution would be to process this all before returning the JSON, or using a Javascript library for this.