-
Is it possible to somehow disable the ariaHideOutside functionality using the comboBox? Sometimes it is not always necessary to hide the other content, e.g., if you want to simply close the listBox on blur. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Not at the moment, and we most likely won't make that configurable since it helps limit the scope of elements available to a screen reader user to the ones relevant to the operation of the combobox while open.
Mind expanding on this? Is there an element outside the ComboBox that |
Beta Was this translation helpful? Give feedback.
Definitely a valid point, but in our case we use React Portals to move the Popover to the end of the document for rendering reasons, meaning that a mobile screenreader user wouldn't land on the Popover when swiping past the ComboBox's input, instead landing on whatever element is adjacent to the combobox input, thus losing the ComboBox's informational "context". This blog post goes into the above in more depth.
IMO it doesn't feel that much more awk…