You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> In Beta, we're currently supporting the **`Autocomplete`** configuration. We aim to support other combobox configurations according to our [roadmap](https://github.com/qwikifiers/qwik-ui/issues/405)
45
-
46
-
<br />
47
-
48
-
The Combobox component makes use of [portals](https://qwik.builder.io/docs/cookbook/portal/#portal). A basic use case for a portal is to prevent overflow issues in your UI. To support portals in Qwik UI, please add the following around your layout.tsx.
49
-
50
-
<CodeSnippetname="qwik-ui-provider" />
51
-
52
-
## **Context Caveats**
53
-
54
-
Portals are still currently in **Beta**, as a result, you may experience an issue using your own context to pass data into the portal children.
55
-
56
-
If you do experience any context related issues, add the following **contextIds** prop to the **ComboboxPortal** component.
57
-
58
-
<CodeSnippetname="context-ids" />
59
-
60
-
It takes in an array of string context id's as a prop. We also have a live example below with context.
61
-
If you are not using context inside the portal children, this will not be an issue.
0 commit comments