rosslavery / angular2-tag-input

Tag input component for Angular 2
45 stars 42 forks source link

Cant select items from dropdown (suggested list) with mouse (click event)? #47

Open kerimdragolj opened 6 years ago

kerimdragolj commented 6 years ago

Am I only one that is having troubles to select items from dropdown with mouse (click). There is no reaction on hover with mouse, and click doesnt work/add tags. When i use arrows to select and enter to add it works perfectly fine. But not when I try to do it with mouse? Here is the code:


<rl-tag-input class="form-control tags"
 [(ngModel)]="tags" 
 name="tags"
 placeholder="Dodaj učesnike.."
 [autocomplete]="true" 
 [autocompleteItems]="suggestedTags"
 [autocompleteMustMatch]="true" 
 [autocompleteSelectFirstItem]="true">
</rl-tag-input>

Am I missing something? Is this available in the module?