So I have a textfield with an autocomplete attached to it working fine.
Here's what I want to happen:
- The user types some letters into the textfield
- The user is presented with the autocomplete suggestions list
- The user selects an item from the suggestion list
- The textfield is populated with the chosen item
- The user is immediately presented with another suggestion list composed from a specified array
Basically, after the user makes their selection I want to present them with boolean operators - "AND"/"OR". The textfield is for a search application. I want to facilitate users searching for multiple topics e.g. "Apples AND Bananas".
Thanks