Recursive nested Field components are Field components which are created when a component is of a complex type (object or array). Those Field components are handling events in the same way as if they were top layer Fields.
For example:
The following data structure:
Will create a two Field components which have the attribute name="name". This will cause the same effect to ocour when pressing on either of them.
What needs to be done?
Change the name attribute to include the entire path of the field in the original data structure. For the example above, the second name="name" would become name="race.name"
Recursive nested
Field
components areField
components which are created when a component is of a complex type (object or array). ThoseField
components are handling events in the same way as if they were top layerFields
. For example: The following data structure:Will create a two
Field
components which have the attributename="name"
. This will cause the same effect to ocour when pressing on either of them.What needs to be done? Change the
name
attribute to include the entire path of the field in the original data structure. For the example above, the secondname="name"
would becomename="race.name"