0
Good morning, I have the following html code:
<select class="form-control" formControlName="tipoped" on-change="PesquisaPrazo('prazo', this.digitacaoForm)" on-change="PegarCfop(this.digitacaoForm)" id="q3Id">
<option selected>Selecione...</option>
<option *ngFor="let tipo of tipoped" value="{{tipo.Codigo}}">{{tipo.Codigo}} - {{tipo.Nome}}</option>
</select>
But only the first on-change function is called (Research), the second is not triggered. Is there any way to use two on-change in the same select or some way to call two functions in select?
The answer I gave worked friend ? Or is there something else that is not working ?
– Pedro Augusto
It is, and thank you
– Bruno Miqueas