We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you create a Combobox with defaultQuery specified, the initial dropdown list will be filtered by defaultQuery.
defaultQuery
However, once the user starts typing a search string, the dropdown list will be filtered by that search string.
It should be filtered by both the defaultQuery and the search string.
The code in question is in ComboboxImplementation#filter() and getQuery().
ComboboxImplementation#filter()
getQuery()
The text was updated successfully, but these errors were encountered:
Make sure that we set list.defaultQuery in addition to list.source.
f7da07b
Refs #724 tangentially.
No branches or pull requests
If you create a Combobox with
defaultQuery
specified, the initial dropdown list will be filtered bydefaultQuery
.However, once the user starts typing a search string, the dropdown list will be filtered by that search string.
It should be filtered by both the
defaultQuery
and the search string.The code in question is in
ComboboxImplementation#filter()
andgetQuery()
.The text was updated successfully, but these errors were encountered: