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

Hey David. I've seen and solved this issue in other codebases before. When using a formatter there is a timing issue with droid keypress as it is not expecting non-typed...

### The Problem When a form is set with an instance of an ES6 class as initial value, and a form-level validator, then it will not submit at all. ###...

```js import { Form } from 'react-redux-form/native'; ``` requires also react-dom... becouse imports some code from src/index.js what import dom-based control... Version: [email protected]

bug

### The Problem When I submit a form that returns an API error, I use `setErrors()` on the form to be displayed using the `Errors` component. The issue is that,...

### The Problem In our checkout flow, we're collecting dynamically build form based on several conditions.. some of the fields will only be rendered and validated, if other fields are...

### The Problem There are old docs for this package up on gitbooks.io. There is no notice that the docs are outdated. That has the potential to be rather confusing....

I'm using dynamic forms, which i create with ```js actions.change(id, defaultSettings); ``` At some point I have to destroy them again, but there is currently no way to remove the...

question

### The Problem The checkbox component in LocalForm triggers validator once with "on" and once with true. ### Steps to Reproduce Open https://codepen.io/anon/pen/XZpMwq , open console and trigger checkbox change....

Is there a way for the model referenced in `Form` to not be predefined in `createForms`/`combineForms`? Current Situation: ```jsx const store = createStore(combineForms({ user: initialUser, })); ... ... ``` Desired...

I'm wanting to simplify my store config, and am experimenting with using RRF in a completely dynamic fashion. Here's how I'm setting up my root reducer: ``` const rootReducer =...