I am currently doing a small sort of user management system.
The user has a mask, where he can enter the data of a person, which then will be stored in the type “Person”. This person can have different numbers of kids. The kids data will be stored in the type kid, which is linked to the type Person with the persons unique id. In this case, each kid can have one parent and one parent can have unlimited kids.
Now comes the crux, I want to be able to dynamically insert all the kids data in the same mask, when I am inserting the parents data. When I click on Save, the kids and parents data are stored in their respective types. Here is an example of how that should look like (obviously this isn’t working, yet):
Thank you very much for your help