I need to apply angular's filter number to input value directly.
I thought the code below must work, but it doesn't..
<input type="text" ng-model="product.price" value="{{product.price | number}}" required>
Is it possible to implement this by default Angular resources? Without writting directives?