Top "Redux-form" questions

Redux Form works with React and Redux to enable a form in React to use Redux to store all of its state.

Redux-form, Invalid prop 'value' of type 'number' supplied to 'TextInput', expected 'string'

I am using a custom component in a redux-form field as follows. <Field name="height" parse={value => Number(…

reactjs react-native redux-form react-proptypes
DatePicker in Redux Form

i'd like to use DatePicker for selecting date using redux form. I create this: import React from 'react'; import DatePicker …

forms reactjs date redux redux-form
You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports

import React from 'react'; import ReactDOM from 'react-dom'; import { createStore } from 'redux'; import createHistory from 'history/createBrowserHistory'; import { Provider } from …

reactjs redux react-redux react-router redux-form
redux-form is Destroying my state once the component is unmounted, what gives?

I am not passing in any special config settings nor am I setting/or calling Destroy... but my state is …

javascript redux redux-form
How to Create Custom Dropdown Field Component with Redux-Form V6?

I've got an app that will be form-heavy, and I'd like as much control as possible, while using as few …

javascript reactjs html-select redux-form
DatePicker date input with custom format

I want to stote dates in my state using redux-form. I use react-datepicker. To make the datepicker compatible with my …

datepicker format momentjs redux-form
How to use a select input type with redux-form?

I searched and tried a lot to use a select input type with my react form using redux-form library. Everything …

javascript reactjs redux-form
Form input using Redux Form not updating

My input field is not updating on key press: import React, { Component, PropTypes } from 'react'; import { Field, reduxForm } from 'redux-form'; …

reactjs redux redux-form
How to set initialValues based on async source such as an ajax call with redux-form

On the official pages and in the GitHub issues for redux-form there are more than one example of how to …

ajax asynchronous redux redux-form
Clear Redux-Form Fields after submitting

Hello and have a nice day, i'm new to react and redux and in my project we are not using …

submit reset redux-form