Angular 2 how do I set begin value of a select box? – Photoshop
I want to have in all my select boxes the value of "Select an option" I have fixed it for the first one like this: <select class="form-control" [(ngModel)]="selectedPrototypeSelector" (ngModelChange)="onPrototypeChange()"> <option *ngFor="#p of prototypes" [value]="p.selector"> {{ p.selectorName }} </option> </select> and…