I have a select list with code -
<select (change)='onGroupChange($event)'> <option *ngFor="let group of groups" value={{group.group_name}}> {{group.group_name}} </option> </select>
Now I have a group name saved as another variable, and I want to set this as the value of the picklist if it matches any.
source share