Change comma separator
-
Hello Sir ,
I want to change comma separator "114968.00" to "114968,00". We are using "," for separator. How can I change ?
-
Your question is a little bit too shallow to understand what exactly you mean...
But I guess you just want to implement a custom helper and use it
function commaSeparator(val) { return val.toString().replace('.', ',') }
{{commaSeparator foo}}