0

How to show indeterminate="true" state in checkbox in Material UI:

<Checkbox
  label={obj.module}
  style={styles.checkbox}
  value={this.state.value}
  />
mortymacs
  • 3,456
  • 3
  • 27
  • 53

1 Answers1

0

it's not supported right now but i think it could be in the next set of releases going by this thread.

https://github.com/callemall/material-ui/issues/4828

in the meantime you can plug it in yourself with either by creating a component like here

indeterminate checkbox in React JSX

and styling it yourself.

Community
  • 1
  • 1
amit thakkar
  • 225
  • 2
  • 4
  • 10