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
Field with name of foo.bar, when submit will result in an object of { foo: { bar: value } }.
However, when reset the form with the same object { foo: { bar: value } }, the field with name of foo.bar does not get the value. Resetting with a flatten object e.g. { "foo.bar": value } } does the trick but it would be better if Formsy supports nested object out of the box since dot notation is supported on the field name.
The text was updated successfully, but these errors were encountered:
Field with
name
offoo.bar
, when submit will result in an object of{ foo: { bar: value } }
.However, when reset the form with the same object
{ foo: { bar: value } }
, the field withname
offoo.bar
does not get the value. Resetting with a flatten object e.g.{ "foo.bar": value } }
does the trick but it would be better if Formsy supports nested object out of the box since dot notation is supported on the fieldname
.The text was updated successfully, but these errors were encountered: