Soni Silalahi
Soni Silalahi

Reputation: 249

ANGULAR - Disable submit button if form value not changed

i have form for selected date. how to disable the submit button if nothing changed in date form?

my html code

<div class="col-xs-6">
   <label><i class="far fa-calendar-alt"></i> Start <span class="text-danger">*</span></label>
     <input id="startTrip1" name="NgbDate" data-provide="datepicker" ngbDatepicker #d="ngbDatepicker" [markDisabled]="markDisabled" [minDate]="minDates" type="text" class="form-control form-flat" [(ngModel)]="ad.start_date" (dateSelect)="onDateSelect($event, ad)" (blur)="validateInput()" (click)="d.toggle()" [ngModelOptions]="{standalone: true}" [disabled]="form.controls.tripduration.hasError('required')" >
      <div class="text-danger" *ngIf="(ad.start_date == '' || ad.start_date == undefined) && ngForm.submitted">
         * This field is required
       </div>
      <div class="text-danger" *ngIf="form.controls.tripduration.hasError('required')">
      * Fill the durations first
      </div>
 </div>
//submit button
<button class="col-xs-12 text-center text-strong pointer custom-trip-btn" (click)="publishTrip()">
<button class="custom-trip-btn">SUBMIT</button>

Upvotes: 6

Views: 24855

Answers (3)

lahiru dilshan
lahiru dilshan

Reputation: 938

If you used below code, the button only enabled if user changed value in the form

[disabled]="!(accountForm.valid && accountForm.dirty)"

enter image description here

Upvotes: 12

Anil Kumar Reddy A
Anil Kumar Reddy A

Reputation: 648

Hope this works!

  <label>
    First Name:
    <input type="text" formControlName="firstName">
  </label>

  <label>
    Last Name:
    <input type="text" formControlName="lastName">
  </label>

</form>    

<button [disabled]="!(profileForm.valid ||!profileForm['isDirty']())" 
class="btn btn-primary">Submit</button>

Check some what same question here

Stackblitz-example of some old problem of mine

for the above you need to use RxReactiveFormsModule RxReactive npm

Upvotes: 0

Himanshu Bansal
Himanshu Bansal

Reputation: 2093

<form [formGroup]="profileForm">

  <label>
    First Name:
    <input type="text" formControlName="firstName">
  </label>

  <label>
    Last Name:
    <input type="text" formControlName="lastName">
  </label>

</form>    

<button type="submit" [disabled]="!profileForm.dirty">Submit</button>

Read more about it here

Upvotes: 7

Related Questions