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

First thanks for building this. Have been using it on several projects over a few months and only now have run into an error. ### The Problem Not sure if...

### The Problem Similar to #890, except I can't add middleware because I'm using LocalForms. ### Steps to Reproduce 1. Create a `` 2. Try to specify `changeAction` on a...

https://github.com/davidkpiano/react-redux-form/commit/c5d6d4d4a696dd5cc31da8c8721b3a6fd6af1dc3 annotates the GH front page with > ⚠️ This project is in maintenance mode only. Please consider using [Formik](https://github.com/jaredpalmer/formik) instead. We're quite happy users of React Redux Form and...

I need to create a dynamic form kind of a query builder. Please see the attached screenshot for the exact requirement. ![dynamic form to be created](https://user-images.githubusercontent.com/6471510/42996373-fb9d91ce-8c30-11e8-9deb-c5ec2eaa2fa9.png)

I'm attempting to wrap react-autocomplete's component with RRF, but I'm having issues. Here is what I have: const typeaheadComponent = (props: any) => ( item} items={this.getOptions()} renderInput={(props: any) => (...

### The Problem Can't focus programmatically a Text Input. ### Steps to Reproduce I tried using getRef={(input) => this.refs.input = input } but is always null I tried to use...

enhancement

### The Problem When a model loads with a 0 value, shows a blank, not a value. Any other underlying value displays ### Steps to Reproduce Have a model with...

### The Problem I have a currency input where a user can input a any digit, at the moment the UI is not great because if you enter three hundred...

I've a few validators on my Local form level. When I hit the button [type=submit"] the validators are working fine but if I submit the form manually with this.formDispatch(actions.submit('mylocalFormModel')), the...

Hi, I am using the RRF to validate our redux form. As the page might be long in some cases on mobile, it is required to scroll to the first...