You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the only way to select a value is to select it either with a click or with pressing "enter" or "tab" (if the focus is on an element of the list)
we should keep the last selected value (or no value if no value is currently selected):
if the user clicks outside
if the user press "escape"
if there is only 1 element in the list and the user does not select it (with a click or by pressing "enter"), then the element is not selected
clicking inside a completed field should display the selected option among the whole list, like in this example. If we have 4 suggestion displayed, this item should be at 2nd.
It would be nice to be able to easily config the number of displayed suggestions. The position of the selected suggestion in the list would be Math.ceil(n/2) (where n is the number of displayed suggestions)
Tasks list
...
The text was updated successfully, but these errors were encountered:
Expected behavior
the only way to select a value is to select it either with a click or with pressing "enter" or "tab" (if the focus is on an element of the list)
we should keep the last selected value (or no value if no value is currently selected):
if there is only 1 element in the list and the user does not select it (with a click or by pressing "enter"), then the element is not selected
clicking inside a completed field should display the selected option among the whole list, like in this example. If we have 4 suggestion displayed, this item should be at 2nd.
It would be nice to be able to easily config the number of displayed suggestions. The position of the selected suggestion in the list would be
Math.ceil(n/2)
(where n is the number of displayed suggestions)Tasks list
...
The text was updated successfully, but these errors were encountered: