I need to create a list of lists, example:
Custom State: Reps (List of Lists of Numbers)
- Index 1: 8,10,12
- Index 2: 1,
- Index 3: 18, 22
Similar to a Jagged Array:
Is this possible?
Use case:
I have a RepeatingGroup that contains several inputs in each cell. Each cell creates a Thing, using the values from the inputs. I am using the Orchestra plugin to loop through and capture the inputs, which are added to custom states on the page container group.
For one of the inputs, users can select a checkbox that enables them to enter multiple ‘reps’ for an exercise. Essentially I want a custom state that has the following:
Custom State: Reps (List of Lists of Numbers)
- Index 1: 8,10,12
- Index 2: 1,
- Index 3: 18, 22
For the following scenario:
Alternatively, it would also be great if I could create [a list of] temporary Things in a custom state, each with the values from the inputs, then write each to the database (Create a Thing) at the end of the workflow.