I'm using AutoCompletionComboBox to allow user to select an item from an established list of String objects.
I can attach an ActionListener to the AutoCompletionComboBox which then notifies when an item is selected - good.
I also need to detect events when the String entered in the AutoCompletionComboBox is NOT in the established list of String objects. Is this possible? If so, how?
David