I am getting quantity and price not just when I click onSubmit but also when I click on the quantity buttons. This is what my quantity buttons look like:
<button class="minus-btn" (click)="minus(product)" type="button" name="btn"> <img src="../assets/images/minus.svg" alt="minus" /></button> <input pattern="^(0|\+?[1-9]\d*)$" class="num" name="int" [value]= "product.nullValue" formControlName="int" ng-minlength="0" type="number"> <button class="plus-btn" (click)="plus(product)" type="button" name="btn"> -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/angular/2229cc8f-3642-4d96-864a-9073c1abddc6o%40googlegroups.com.
