create multiple objects in an entity via a form

0
I have to entiys which are associated with an 1 to * Association to the child. Now i have a New/Edit page where i can select one object from a reference Selector of the adult entity, then i need multiple text boxes to create new objects of the child entity. How to get to that to be able to create multiple child objects.
asked
1 answers
1

Hi Nico,

 

One way to do this is to use a microflow as the data source for your child object forms, within this microflow you can setup the association to the selected parent.

From your description, the selected parent entity will be in context so you can pass this entity as a parameter to the microflow that will create the child entities.  You can then replicate this as many times as you need, so create a data view that uses the microflow to return an new correctly associated child entity with the required input widgets and then duplicate this on your page as many times as you need.

answered