Here's my specific scenario:
{
'key': 'f1',
'label':'fl1',
'items':[
{'key':'p1', 'label':'pl1'},
{...},
...
]
}
Is there a way to automatically populate Form P using the items array from field f when registering rows on Form F?
I considered IFTTT, but its "create entry" action only allows creating one row per rule execution, which isn't ideal for my use case.
Any suggestions would be greatly appreciated. Thanks!
Edit: While p ideal field type would be webservice dropdown, if it's not possible, even type text that contain only the key from each item would be helpful.
I think I found a trick solution:
It works, but I'll be happy for a more clean solution.
If you want to copy a flattened values from a multi-value field then this will be the correct approach
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there no way to skip the first part and flatten it directly based on f.items?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You cannot flatten by the field in another form, so it needs to be copied locally from the [entry.f.items.asList]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.