I have a dropdown which binds data from database
<select (ngModelChange)="load($event)">
<option *ngFor="let type of types" [ngValue]="type">{{type.Name}}</option>
</select>
On another button click (not the dropdown change event) I get the type.Id which should be bound to this select, show the selected name and hold it for further use. How can I do that.