redux-form-material-ui icon indicating copy to clipboard operation
redux-form-material-ui copied to clipboard

A set of wrapper components to facilitate using Material UI with Redux Form

Results 74 redux-form-material-ui issues
Sort by recently updated
recently updated
newest added

I'm not sure how far this is going to fly since it's not really core to the library, but I've recently come across a use case where I have a...

* onUpdateInput should execute regardless of dataSourceConfig. * As we would like to have different methods for user select and user change, another function such onUpdateInput which is also available...

Pass rest of props from `input` to MaterialUI component, mainly for `onFocus`, `onBlur` callbacks to properly trigger `@@redux-form/FOCUS` `@@redux-form/BLUR` redux actions. Without it `touched` meta will never be set and...

Using MaterialUI-v1, if you use the redux-form-material-ui Select with the V1 MaterialUI MenuItem, an onBlur action is not fired once a selection is made. Using the old (pre-V1) MenuItem, everything...

I want to transfer material-ui properties with typescript, such as: ``` ``` But i got an error `Field does not has attribute "floatingLabelText"`. Does there have any example use with...

index.js:2177 Warning: React does not recognize the `helperText` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as...

my goal is to show the labels of my data for selection, but keep the value in redux-form. So i have this dataSource for example: ``` const COUNTRIES_PAIRS = [...

Hi, First of all, I would like to thank you for your hard work and for sharing it with all of us. I'm trying to use SelectField and DatePicker in...

When I pass numeric values to radio buttons, it does not work as expected. I have to to click two times on button to select it. E.g.: ```jsx ``` After...