Answers for "how to set value of multiselect dropdown for reactive forms in angular 6"

0

how to set value of multiselect dropdown for reactive forms in angular 6

content_copy
      
      <select multiple name="countries" [formControl]="countryControl">
  <option *ngFor="let country of countries" [ngValue]="country">
    {{ country.name }}
  </option>
</select>
Posted by: Guest on February-10-2021

Code answers related to "how to set value of multiselect dropdown for reactive forms in angular 6"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language