I would like to make a list of products with their prices and quantity fields next to them, and I would like the user to be able to pass a number into the quantity input field, and see the adjusted price, so I came up with something like this:
<li ng-repeat="product in products">
{{product.price}} - quantity: <input type="text" value="1" ng-model="prodQuantity"> - {{priceTotalProducts(prodQuantity)}}
</li>
Which surely doesn't work. Please point me into the right direction!
<input type="number"it may work.