Update form with Validation not working until atleast one value is changed in the form field-Angular- ReactiveForms
问题 When working with put/update method the button is disabled until each and every field is touched and atleast on value in each field is changed. whereas post method is working perfectly fine. Employee.component.html <form fxLayout="column" [formGroup]="editForm" #f="ngForm" (ngSubmit)="onSubmit()" > <div class="input-row"> <mat-form-field fxFlex> <mat-label>Id</mat-label> <input readonly value="{{data.emp.id}}" matInput #id disabled formControlName="id" required /> </mat-form-field> </div>