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 Selectors, I use groups to group options in logical ways.
Within a group, I would like there to be an empty state so that if no options exist under that group, a message may be displayed.
Cloudscape supports an empty state if no options exist in the selector, but does not support empty state if no options exist within a group of a selector.
<Select
selectedOption={selectedOption}
onChange={({ detail }) =>
setSelectedOption(detail.selectedOption)
}
options={[
{
label: "Group 1",
options: [],
empty: "There are no options in group 1" // This is what I'm looking for
},
{
label: "Group 2",
options: [
{ label: "Option 4", value: "4" },
{ label: "Option 5", value: "5" }
]
}
]}
empty="No options exist for this selector" // This is what is already supported
/>
Hello @mariseniehaus ,
We apologies for missing your request!
Could you expand a bit on the use case? Why do you need to show an empty group instead of not showing anything? If customers cannot select anything form an empty group, not showing it altogether could help reducing cognitive load and also save space.
Description
In Selectors, I use groups to group options in logical ways.
Within a group, I would like there to be an empty state so that if no options exist under that group, a message may be displayed.
Cloudscape supports an empty state if no options exist in the selector, but does not support empty state if no options exist within a group of a selector.
Code of Conduct
The text was updated successfully, but these errors were encountered: