Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <mat-form-field>
  2. <mat-select placeholder="Pokemon" [formControl]="pokemonControl" multiple>
  3. <mat-option>-- None --</mat-option>
  4. <mat-optgroup *ngFor="let group of pokemonGroups" [value]="group.name"> Comment:- Need CheckBox for this value as well <mat-option *ngFor="let pokemon of group.pokemon" [value]="pokemon.value"> {{pokemon.viewValue}} </mat-option>
  5. </mat-optgroup>
  6. </mat-select>
  7. </mat-form-field>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement