Redux Form Material UI: Select with Nested Lists not working
问题 I have a situation where I need to show grouped lists of items: https://v0.material-ui.com/#/components/list (Go to Nested Lists) Can redux-form Select field work with options as <ListItem /> instead of <MenuItem /> ? I can't select any item from the nested dropdown. Redux's onChange callback doesn't fire up. Here is the code: Form: <form> <Field name="camops" normalize={normalizeMultipleSelectValues} component={MySelectFormField} floatingLabelText="Item(s)" fullWidth multiple /> </form>