Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

ngfor in select

//angular
<select [(ngModel)]="passenger.Title">
    <option *ngFor="let title of titleArray" [value]="title.Value">
      {{title.Text}}
    </option>
</select>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ngfor #select
ADD COMMENT
Topic
Name
7+6 =