I’m looking for an AJAX-enabled combo box with the following features:
- The combo box accepts entries selected from a drop-down as well as free-form text entered by the user (kind of like the text field used to enter tags for StackOverflow questions)
- The drop-down list contains a limited number (less than 10) of suggestions based on what the user typed so far
- The suggestions are pulled from a primary list and a secondary list. The secondary list is consulted if the user’s input cannot be matched to anything in the primary list. Both lists are generated on demand by my application running on the server.
Any suggestions?