You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
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<FieldSetmodel=".myGroup"><Control.textmodel=".field1"/><Control.textmodel=".field2"/>{field1===''foo" &&<Control.textmodel=".field3"/>}</FieldSet>// container<LocalFormonSubmit={handleSumbit}model="myForm"><Control.textmodel=".fieldParent1"/><Control.textmodel=".fieldParent2"/><Control.textmodel=".fieldParent3"/><FieldsGroup/>
</LocalForm>
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
?The text was updated successfully, but these errors were encountered: