I would like to have a TextBox that supports AutoComplete and lets users type multiple words separated by a comma or semicolon, offering suggestions for each word.
in my database i have three values.
ID Item
1 Apple
2 Banana
3 Orange
I want to be able to perform the following scenario:
Type "ap" Have it suggest "apple"
Press the comma
Have it fill in "apple," with the cursor after the comma
Type "ba" Have it suggest "banana"
Press the comma
Have it append "banana," resulting in "apple,banana,"
and i want to get Item IDs with comma separated like 1,2
Thanks in advance