I want my combobox to enable the autocomplete if what the user is typing is in the items list and if it doesn't exists, I want to include it in my list.
For example:
A ComboBox with these items: "Rock, Country, Jazz". If the user starts typing "Ro..." the combobox autocomplete to 'Rock'. But if the user types "Blues", I want to add it to my items. So it would be like: "Rock, Country, Jazz, Blues".
How can I do that?