react-redux-form
react-redux-form copied to clipboard
Fieldset inherit model
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 documentation and one of my fieldsets needs to use the model that's set on the parent Form. However, I am forced to specify a model on the Fieldset as well. I've tried setting the Fieldset model to an empty string or to . to no avail. Is this something that's possible?
Currently, I'm falling back to just using the regular fieldset HTML element, rather than the dressed up Fieldset from react-redux-form, but it would be nice to have consistency across my composable fieldsets.