I have a project that involves a learner filling out essentially a complex self-evaluation. There are 13 rows (10 mandatory, 3 optional). Each row has one fixed text object, one drop down that can turn into a text input box when the learner picks "other" (one row skips the drop-down), two click boxes that are mutually exclusive, and four click boxes that aren't mutually exclusive.
(screenshot)
![]()
I'd like to store the learner's input - which dropdown they picked, which boxes they selected - in the cleanest way possible. Each colmen's items share a common tag. What I'd like to to is run through each row, column by column, ultimately making a list of lists, but but I don't know how to build that list of lists procedurally - how to, say, indicate that after adding the final item from Row 1 to the first sub-list, how to then indicate that I want to start a new sublist.
Or is this a job for a map? All I want to do with it is save it so that at the end of the lesson their answers can be presented back to them in a way they can review or save offline.
Thanks!