ng2-ui / auto-complete

Angular Auto Complete component and directive
https://ng2-ui.github.io/dist/#/auto-complete
MIT License
279 stars 122 forks source link

Is it Possible to add multiple items to input tag from source array? #365

Open chandru02010 opened 5 years ago

chandru02010 commented 5 years ago

IMPORTANT I have simple array of strings and i can able to select one item at time, so is it possible to select multiple items from array using auto-complete?

Steps to reproduce and a minimal demo

 var myString = "abc pqrs xyz 123";
 var myStringSource = myString.split(' ');

so I want to add abc as well as pqrs to the input

Current behavior

Currently it is selecting one at a time

Expected/desired behavior

I wanted to add more than one item to input tag

Other information

Thanks...