-
I've been trying to figure this out for a while. I have an autocomplete that I would like the initial set of options to display on focus/click as apposed to having to type a character first to see the list. Any help would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Input + DataList is autocomplete. This, as the name states, completes your input automatically. Therefor the suggestions do not pop up instantly, only when you type. You can always open them by pressing down key. If you, instead, want to pick an item and have a way to filter the options by text field, perhaps you are looking for a ComboBox? |
Beta Was this translation helpful? Give feedback.
Input + DataList is autocomplete. This, as the name states, completes your input automatically. Therefor the suggestions do not pop up instantly, only when you type. You can always open them by pressing down key. If you, instead, want to pick an item and have a way to filter the options by text field, perhaps you are looking for a ComboBox?