Search code examples
autosuggest

How to get auto suggestion from server


How to get auto suggestion from server, list of items in textbox which can be selected in Java/J2EE ?


Solution

  • I would suggest using jQuery it has a nice autocomplete plugin. You will need to build a simple webservice to provide the data.

    So you will be building the simple Java backend that deals with getting the data out and then using the autocomplete to consume that data on the front end.