set combobox open menu without using useComboboxPrimitive #2350
-
Hi there, I am trying to implement an Anchor link in a toast that will open the dropdown when clicked on |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @azhengtwilio,
Opening the Combobox menu programmatically is possible with the state hook
Please do be aware that Anchors are for hyperlinking to another URL and that Buttons trigger an action. In this instance, you likely want a Button. Please consider the link style button as it is more accessible for screen reader users. |
Beta Was this translation helpful? Give feedback.
Hi @azhengtwilio,
Opening the Combobox menu programmatically is possible with the state hook
useCombobox
from the non-primitive component. Here's an example of how it would work. This is the only way to tap into that functionality.Please do be aware that Anchors are for hyperlinking to another URL and that Buttons trigger an action. In this instance, you likely want a Button. Please consider the l…