Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular 5 material: dropdown (select) required validation is not working

I have a material dropdown inside my ngForm, when I set this select as required it shows an asterisk * beside it but the form is seen as valid if I don't select any option from the dropdown.

<mat-form-field class="col-4 offset-1">
<mat-select placeholder="Some placeholder" [(value)]="data.name" required>
  <mat-option *ngFor="let name of names" [value]="name.value">
    name.viewValue
  </mat-option>
</mat-select>
</mat-form-field>

This is unlike what happens if I set the material input to required which will make the form invalid if it is empty.

<mat-form-field class="col-4 offset-1">
 <input matInput name="dob" placeholder="Date Of Birth" [(ngModel)]="data.dob" required>
  </mat-form-field>

I prefer to solve this using a template driven approach not by using ReactiveForms ( I found some solution talking about the ReactiveForms), can anyone help me?

Note:

I found a question of similar title but it is using FormGroup (reactiveForms)

I have put an example to give an idea in this stackblitz

like image 287
Ahmed Elkoussy Avatar asked Apr 29 '18 14:04

Ahmed Elkoussy


Video Answer


1 Answers

You added required to the select's option, not the select. Do it like:

<mat-form-field>
  <mat-select placeholder="Favorite food" name="select" [(ngModel)]="select" required>
    <mat-option *ngFor="let food of foods" [value]="food.value" >
      {{ food.viewValue }}
    </mat-option>
  </mat-select>
</mat-form-field>

DEMO

like image 169
Julius Dzidzevičius Avatar answered Oct 04 '22 18:10

Julius Dzidzevičius