I have a select that besides taking the name, I also need to get the id of my selected option.
My select:
<select (change)="setTipoProduto(tipoDoProduto)" [(ngModel)]="tipoDoProduto" name="tipoDoProdutoName"
class="select-text">
<option class="dropdown-item" selected>{{tipoDoProduto == null ? 'Tipo do Produto' : tipoDoProduto}}</option>
<option [hidden]="tipoprodutos[k].tipo == tipoDoProduto" *ngFor="let tipoProduto of tipoprodutos;let k = index"
class="dropdown-item">{{tipoprodutos[k].tipo}}</option>
</select>
How can I tell my function setTypeProduct the id and type that was selected?
My product_type object is constituted by typeProduct.id and typeProduct.name, but in this way ngModel only picks the type.