redux-form-material-ui
redux-form-material-ui copied to clipboard
A set of wrapper components to facilitate using Material UI with Redux Form
  If I press "Close" button, then redux-form reducer takes value of this button (which is empty string) and put it to the...
The workaround is recommended here: https://github.com/mui-org/material-ui/issues/7747#issuecomment-322028884
Hi, i´m not sure how to use the german DateTimeFormat with the DatePicker. I tried to follow this guide, but didn´t got it right could somebody explain it to me,...
"redux-form-material-ui": "^5.0.0-beta.2" `componentDidMount () { this.refs.firstField // the Field .getRenderedComponent() // .getRenderedComponent() // result:=> undefined .focus() // on TextField } ` error: TypeError: Cannot read property 'focus' of undefined
When i tab into select field in redux form material ui and suppose i type on the keyboard say a value of some alphabet say 'G' and if i have...
When used as per the website example thusly: ``` import { Checkbox, RadioGroup, Select, TextField, Switch, FormControlLabel } from 'redux-form-material-ui' ``` I get the following error: Element type is invalid:...
Original `AutoComplete` allows you to define `onUpdateInput` callback which is triggered when input value changes. For example to fetch remote data based on value and update `dataSource` with it. This...
Lets say we have the example with the checkbox: ```` ```` The validation doesn't work because there isn't a mapError function in checkbox component. Is that on purpose? This is...
`Slider` was merged into [`@material-ui/lab`](https://github.com/mui-org/material-ui/tree/master/packages/material-ui-lab/src/Slider), in theory can that be supported?
When making a Select field required I get the error below. In mapError.js helperText is being set if there is an error. This works for most of the components but...