Using AngularJS, I have a number field <input type="number" ng-model="requisite.values.cost">. Is it possible to automatically format this field, separating the thousands with a space?
Meaning, so that when the value requisite.values.cost is 1000000, it will display in the number field 1 000 000, for easier readability.
input type="text", as opposed toinput type="number". Would it be the same with anumberfield?