So i have the following element:
<div class="input-field col s12">
<select [(ngModel)]="view.frequency" >
<option value="" disabled selected>Vælg hyppighed</option>
<option [value]="1">Aldrig</option>
<option [value]="2">Sjældent</option>
<option [value]="3">En gang imellem</option>
<option [value]="4">Ofte</option>
<option [value]="5">Altid</option>
</select>
<label>Vælg hyppighed</label>
</div>
Now on chrome this produces the following result:
however on edge it seems to ignore the disabled
option and sets the default to the first value Aldrig
:
Can anyone tell me whats going on here?