How to apply filter number to input value | Angularjs -


i need apply angular's filter number input value directly.

i thought code below must work, doesn't..

<input type="text" ng-model="product.price" value="{{product.price | number}}" required> 

is possible implement default angular resources? without writting directives?

this can achived using regex or ng-pattern.

<input type="text" ng-model="product.price" ng-pattern="/^(\d)+$/" required> 

2.if want format data value, can this.

$scope.product.price= parseint($scope.product.price) 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -