Combobox Concerns
See original GitHub issueRegarding https://github.com/tailwindlabs/headlessui/pull/1047
What package within Headless UI are you using?
@headlessui/react@insiders; Commit: 6fc28c610f14a3ab88a425cf97a67cee9bcb8e71 (third commit on Feb 2, 2022)
Chrome and Safari
Reproduction URL
headless/packages/playground-react/pages/combobox/combobox-with-pure-tailwind
Describe your issue
- We needed to add a z-index as the select menu was showing below other input fields on the screen.
- It would be great if the search box was cleared when you reopen it after selecting an item from dropdown. I’m happy to make a quick video to demonstrate this. Via HeadlessUI’s discussion board, I see other users are using https://react-select.com which behaves this way: (a) select United States via dropdown, (b) type in England to change my selection rather than (a) select United States via dropdown, (b) start typing England, © notice you get no results so you hit backspace a bunch of times until United States is no longer in the search field, (d) type England again.
- Add
w-full
so the field matches the select menus on tailwindui.com.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:2
- Comments:11
Top Results From Across the Web
Combobox Issues - Power Platform Community - Microsoft
I'm having a couple of issues with Comboboxes within an app I manage. I'm using an Azure SQL Database as the data, with...
Read more >Combobox Issues | WinForms Forums - Syncfusion
Hi everyone. I have a VB.NET form with a couple of comboboxes on them who get their drop down entries from a database....
Read more >Combobox Issues - YouTube
Combobox Issues. 27 views27 views. Feb 28, 2019. 0. Dislike. Share. Save. John Rossitter. John Rossitter. 105 subscribers. Subscribe.
Read more >Combo box | U.S. Web Design System (USWDS)
Current accessibility issues. In late 2022, we found some combo box usability issues when we were testing with people who use screen readers...
Read more >Combobox problem - ZK Forum
Hello, i don't understand why these comboboxes update all together at the same time. This is an example.. VM: package ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Regarding point 2, i noticed the same behavior today and I think react-select offers a nicer UX here. I didn’t find a way to implement the same behavior using Headless UI, it seems like the
Combobox.Input
always displays the current value when the search query is empty.react-select seems to solve this by overlaying the current value as an absolute positioned
div
above the input. The input itself is empty, and if a query is entered, the overlay is being hidden.I made a quick video (hope you don’t mind @ACPK – and I hope we mean the same thing 🙂 )
Example using react-select
https://user-images.githubusercontent.com/4227520/153291221-1333eb7b-61f7-40a9-8b29-a4cfbbf85bc1.mp4
Example using Headless UI
https://user-images.githubusercontent.com/4227520/153291249-bc0cab3e-9ed0-4cf3-b81f-645fe138a209.mp4
I second this feature request. I have played with both Headless UI and react-select. react-select is hard to style with tailwind but IMO this is the best UX for a combobox. It would be amazing to have such UX possibility. I have tried to build it but couldn’t get the all event handlers to work nicely.
I have tried to add a div below the Combobox.Input with the last known selection but then it becomes hard to manage the input state which is reseted on selection change and the the div state which hold the value. Making the combobox a controlled component and managing all keyboard events is out of my current knowledge in React.