Jici
3
No need for orchestra plugins. You can use elements states to store the response for each row/question and once user is ready to submit, you can send this to a backend WF to process the list of questions/answers.
For example, you can store data as a in a list of text like question|answer but you will also save the answer to the current cell into a state in a group of this cell (as a text). The workflow will trigger on response click to > remove the Current cell state from list of text state, set the current cell state with the new value (answer|response) and add this value to the list of text state (so if user change the response, this will also update the list of text)
Once it’s ready, send the list of text using Schedule API WF on a list (type text) and send the list of text to this WF and save in DB. You can use :split by | (first item for question, last item for response)
2 Likes