I am looking for the simplest way to apply autocomplete to a wicket 8 dropdownchoice with a list of names.
I just want a hint..
List<User> list = getUsers();
final DropDownChoice<User> dropdown = new DropDownChoice<User>("dropdown",
new PropertyModel<User>(this, "selected"), list, renderer) { //code };