Was creating an Input field with DataList. I was trying to get the object associated with selected option. I was able to get the selected value but not the whole object. I saw some earlier posts where the Datalist items are Unique. In such case we can filter the result based on the selected item & we have only one object corresponding to the selected value.
In my case the DataList items are not unique.
public userDetails: Array = [ {userID: 1, userName: 'user 1'}, {userID: 2, userName: 'user 2'}, {userID: 11, userName: 'user 1'}]
Here the items that we are displaying is userName and it's not unique. I need to get the userID corresponding to selected item.
<input type="text" class="form-control" list="datalist1"/>
<datalist id="datalist1">
<option *ngFor="let user of userDetails" [value]="user.displayName" (click)="selected(user)">
{{ user.displayName }}
</option>
</datalist>
You can do something like this :
and then in
component.ts
:ofcourse you'll have to update the field using which you want to find the users. here is a sample demo : demo