Question: Access LocalForm State
diego-toro opened this issue · 0 comments
diego-toro commented
The Problem
I have a ParentComponent grouping together some controls, and I've looking to access the form state in terms to hide or show some other controls depending on the value of some of the other controls. Any way to do that without moving the entire form state from the container to the child component? anything like a redux connect
?
// ParentComponent grouping of fields
<FieldSet model=".myGroup">
<Control.text model=".field1" />
<Control.text model=".field2" />
{field1 === ''foo" && <Control.text model=".field3" />}
</FieldSet>
// container
<LocalForm onSubmit={handleSumbit} model="myForm">
<Control.text model=".fieldParent1" />
<Control.text model=".fieldParent2" />
<Control.text model=".fieldParent3" />
<FieldsGroup />
</LocalForm>