react-redux-form
react-redux-form copied to clipboard
Create forms easily in React with Redux.
### The Problem https://davidkpiano.github.io/react-redux-form/, has side scrooling. test in -> mozila firefox and google chrome browsers. Linux mint 17 OS
### The Problem Error when submitting a form (with `required` keyword) after having replaced entirely the form via a func reducer. ### Steps to Reproduce Have an input `required`, a...
### The Problem I have a react-redux-form field that fires an error on production when the field loses focus. > TypeError: Cannot read property '0' of undefined at s (resolve-model.js:31)...
getForm doesn't return proper model for formReducer('') handling all forms - formValue is incorrect
### The Problem When formReducer handles all forms states (empty string as a model [just like here: https://davidkpiano.github.io/react-redux-form/docs/api/createForms.html]), component's internal call of getForm (https://github.com/davidkpiano/react-redux-form/blob/master/src/components/form-component.js#L406) returns incorrect state. It creates some...
### The Problem ### Steps to Reproduce ### Expected Behavior ### Actual Behavior ### Reproducible Code Example (please fork from [this CodePen template](http://codepen.io/davidkpiano/pen/yJwmEa) or [this CodeSandbox template](https://codesandbox.io/s/k3jyzwqo53))
Hi, Quick question: should action RESET_VALIDITY update whole form validity like action SET_ERRORS does (https://github.com/davidkpiano/react-redux-form/blob/master/src/reducers/form-actions-reducer.js#L214)? Because currently reseting field error doesn't change form validity.
Hi, Exploring this React space esp for building complex Forms using Redux. Understanding so far about libraries can be summarized as: redux-form = redux + react react-redux-form = redux +...
Is it possible for a `Fieldset` to inherit its model directly from the parent `Form`, rather than specifying a child model? I'm creating composable fieldsets as suggested in the [`Fieldset`...
### The Problem https://github.com/davidkpiano/react-redux-form/issues/1078 Same thing again, but with nonempty array. ### Reproducible Code Example https://codepen.io/marcinm2h/pen/KoMYvY?editors=0011 FIX: https://github.com/davidkpiano/react-redux-form/pull/1117
Hi. I noticed in the docs that using a combination of the model value with the `Control.Text` component allows for rendering of validator errors etc. Given the absence of said...