Web
Anyone that has ever done a web search is familiar with autocomplete behavior. But actually developing these controls has a number of non-trivial technical challenges. Where do you get the options from? Do you specify those options on the client or load them server-side? Do you load all options at once or as the user types?
Kendo UI's AutoComplete widget gives you the hooks to make all these implementations possible. In this article we'll build a few Java-backed AutoComplete widgets to explore the best way to structure the autocomplete controls you need to build. We'll start with a small hardcoded list, and scale all the way up a server filtered list with a million options.