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
Have a controlled Combobox with autocomplete="automatic":
autocomplete="automatic"
function() { const [value, setValue] = useState(); return ( <Combobox label="Auto Completion (Automatic)" autocomplete="automatic" value={value} onChange={args => console.log(args)} onSelectionChange={args => console.log(args)} > <ComboboxOption>None</ComboboxOption> <ComboboxOption>Manual</ComboboxOption> <ComboboxOption>Automatic</ComboboxOption> </Combobox> ) }
When the automatic behavior occurs (either with the user blurring or tabbing out of the field) the change events should correctly be invoked.
No change events are called. The combobox appears to have updated state internally, but this leaves it out of sync with any external state.
6.x
No response
Additional information
The text was updated successfully, but these errors were encountered:
scurker
Successfully merging a pull request may close this issue.
Steps to reproduce
Have a controlled Combobox with
autocomplete="automatic"
:Expected Behavior
When the automatic behavior occurs (either with the user blurring or tabbing out of the field) the change events should correctly be invoked.
Actual Behavior
No change events are called. The combobox appears to have updated state internally, but this leaves it out of sync with any external state.
Version
6.x
What browsers are you experiencing the problem on?
No response
Relevant log output
No response
Anything else we should know?
Additional information
The text was updated successfully, but these errors were encountered: