Adam Royle
Adam Royle
We're using it to display thousands of thumbnail images in a grid. Works really well with Autosizer and Grid components... thanks!
I think you might be looking at the wrong repo? This is `react-forms` not `redux-form`
I should note preventing spreading of props might be a breaking change for people who are passing through a component for Fieldset instead of a dom string, but they should...
Setting a new formValue should reset the form. Can you show your code?
At first glance you need to change this.props.onReset to just this.onReset On 07/03/2017 8:32 AM, "Robert Schönthal" wrote: > yes. here the relevant part > > import React from 'react'import...
I had a look in more detail and looks like there is a bug with the Input component and its debounce behavior combined with setting form values as undefined. I've...
You must set values to `null` instead of `undefined` in your reducer. ```js case RESET_CALCULATION: return Object.assign({}, state, { current: { start: null, end: null, duration: null, break: null }...
A bit more investigation has shown the problem to be caused by [uninheritable static properties on IE10 and below with Babel](https://babeljs.io/docs/usage/caveats/) which can be fixed by adding the [transform-proto-to-assign babel...
This is also an issue with react-stylesheet. For the moment I am including my own pre-built modules for react-stylesheet and react-forms in my project, so it's no longer affecting me,...
@elmorenocivitas The repo has changed since I built mine, but if you clone react-forms repo then install and add the mentioned babel plugin to the "babel" config in package.json, then...