react-redux-form icon indicating copy to clipboard operation
react-redux-form copied to clipboard

Create forms easily in React with Redux.

Results 100 react-redux-form issues
Sort by recently updated
recently updated
newest added

### The Problem Formatter option in Controls is not documented but, on the other hand, `parser` option is.

actions.change() does not update viewValue ### Steps to Reproduce i updated the model with values from an api , My model reducer is an immutable object . when i use...

### The Problem When a reset action is launched, the model is restored to its initial state, however, the visual status of a Control.select is not restored to the defaultValue...

### The Problem This is a followup on #834 (thanks for fixing the bug!), which would now correctly keep the error message set via `actions.setFieldsError`.. the problem is now, editing...

1) Currently `` allows a consumer to provide a function at `props.children`, and in this case, passes the relevant `fieldValue` to that function. - I'm curious whether we should also...

enhancement

Is there a way to listen to model changes directly on a control, instead of the whole form? It would be useful to know when a particular input changes. I...

### The Problem When data come from remote server promise middleware used to set to state. I can see data fill table but when I try to submit it I...

Setting `defaultValue` on a Control.select do not set it to the `modelValue`. After changing the option on the select the value is correctly propagated

can't reproduce

I am trying to add react-redux-forms into an existing implementation. I want to be able to use a custom reducer for my form that has access to the model data....

I have the following instance of Control: ``` ``` Then I have the following changeAction: ``` changeAction(id: string, property: string) { return (model: string, value: string | number) => {...

enhancement