Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

249
Vistas
How to select first option in select?

I'm using this and i added selected in first option but its not working. Any suggestion?

<select class="select-dropdown" [(ngModel)]="selectedTickeDecisionType" (ngModelChange)="onChange($event)">
    <option value="" selected>Odaberi tip odluke</option>
    <option *ngFor="let decisionType of lovData.tticketdecisiontype" value="{{decisionType.code}}">{{decisionType.name}}</option>
</select>   
about 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

When selectedTickeDecisionType is initially null

[ngValue]="null"

on the first <option> should do what you want:

<select class="select-dropdown" [(ngModel)]="selectedTickeDecisionType" (ngModelChange)="onChange($event)">
    <option [ngValue]="null" selected>Odaberi tip odluke</option>
    <option *ngFor="let decisionType of lovData.tticketdecisiontype" value="{{decisionType.code}}">{{decisionType.name}}</option>
</select>   

You might need [ngValue]="decisionType.code" on the other options to make this work properly (I haven't tried mixing value and ngValue myself yet).

about 4 years ago · Santiago Trujillo Denunciar

0

<option
 *ngFor="let decisionType of lovData.tticketdecisiontype; let i = index"
 [ngValue]="decisionType.code"
 [attr.selected]='i>0 ? "selected" : null'>
  {{decisionType.name}}
</option>
about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda