Answers for "select option in angular 8"

-1

in select option how to make one default in angular

<option [ngValue]="undefined" selected>Select</option>
Posted by: Guest on January-01-2021
0

selected angular select

<option *ngFor="let opt of question.options" [value]="opt.key" [selected]="opt.selected == true">{{opt.selected+opt.value}}</option>
Posted by: Guest on June-08-2021

Code answers related to "select option in angular 8"

Code answers related to "Javascript"

Browse Popular Code Answers by Language