How to Make Repeated List Field Form Inside The Modal?

Hi guys,

I’m new at plasmic, so I have question. I want to create a repeated list field form in the modal, you can see it in the photo. But when I tried it, the form always follows the fields in the previous fields. This makes me unable to edit one by one. Are there any instructions that I can read/follow?

Thanks


Hi there,

Can you show what elements are in your modal component?

I am not sure why you get this but I would personnaly build this with another logic : I would start with a repeatable container for tracks, in which I would add the modal and the fields I need, querying the data of the currentItem. This means one form per item and ensures me I have the data of the right track in the right modal. But this only works with data integration and would not be appropriate to just build a form that sends data somewhere.

I have noticed that to do this it seems that you can’t use the “connect table” prop for a form as it does not appear when the form is in a repeated element (actually the reason why I found your question). So you would need to make you own form with the fields and button elements.