AutoCombobox

Combobox widget combined with Autocomplete widget which allows select item by typing.

Note

Difference between AutocompleteCombobox and AutoCombobox:
- AutocompleteCombobox basically is InputField with autocomplete feature, so you can get only string, not selected item.
- AutoCombobox is Combobox with the option to select items by typing, with it you can get selected items.

Options

  • Autocomplete TAutocomplete

    ListView with items.

  • Combobox TCombobox

    Button to show and hide ListView on click.

  • AddItems bool

    Create a new item and add it to list if item not found with specified input. Requires overrided TItem Input2Item(string input) method.

  • KeepSelection bool

    Keep selected items for Autocomplete.DisplayListView.