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
I have searched the issues of this repository and believe that this is not a duplicate.
What problem does this feature solve?
We have a use case where I need two checkbox groups that are related. Selecting one item in the first checkbox group, implies the inclusion of some items in the second checkbox group. The items in the second group haven't been explicitly selected, so I don't want to show them as checked. But, I do want to indicate that they are implicitly included so I'd like to use the 'indeterminate' state to represent this.
What does the proposed API look like?
I'd like to be able to set { indeterminate: true } on the options for the checkbox group.
What problem does this feature solve?
We have a use case where I need two checkbox groups that are related. Selecting one item in the first checkbox group, implies the inclusion of some items in the second checkbox group. The items in the second group haven't been explicitly selected, so I don't want to show them as checked. But, I do want to indicate that they are implicitly included so I'd like to use the 'indeterminate' state to represent this.
What does the proposed API look like?
I'd like to be able to set { indeterminate: true } on the options for the checkbox group.
It appears this could be implemented by adding the following line to
components/checkbox/Group.jsx
at approx line 83:or, if it would also be desirable to add the
indeterminate
property to the entire Checkbox Group:My work-around is to create a list of Checkboxes inside the CheckboxGroup, so this is really just a matter of convenience.
Thanks!
The text was updated successfully, but these errors were encountered: