-
Hello, I'm using the combobox component to build a filtering mecanism like this twitch UI: Screen.Recording.2021-11-26.at.5.00.10.pm.movWorks great but I don't find a way to clear Am I missing something or this is not supported ? Thanks Thibault |
Beta Was this translation helpful? Give feedback.
Answered by
tdurand
Dec 2, 2021
Replies: 1 comment
-
Ok I found out my mistake, I need to control the value of the combobox input <ComboboxInput
value={term}
onChange={handleChange}
/> and then on the onSelect handler of Combobox just set the state of the value to "" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tdurand
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok I found out my mistake, I need to control the value of the combobox input
and then on the onSelect handler of Combobox just set the state of the value to ""