Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

247
Views
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 answers
Answer question

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!