Is there a way to create a Select component similar to a Windows Combo and disallow the user to leave the Combo if he has not selected one of the entries. I.e. make it selectable but not editable.
On top of that, ideal would be to allow typing to filter out entries progressively.
Anyhow, The normal Select component is filterable with typing by default, and you can force the using to choose something by putting this: mySelect.setNullSelectionAllowed(false);