Save the entire page changes at once

0
I have a page to display list of Categories where each category has multiple questions associated with it and each may have multiple responses. In this Page , a user can select a single option for radio button and multiple option for multi select question. I don’t want to save the data when a user selects the option, I want to Save at last after options have been selected for each question. How can I achieve this Save functionality for the entire page at once.
asked
1 answers
1

Hi Mohammed,

If you want to save all in once you should associate all the categories to one object. Then when the save button is pressed you can retrieve all the categories associated with this project over memory and then you can retrieve all the responses given in this category over memory as well. Then you can commit the lists of categories and responses and all should be saved.

Alternatively you can use on change microflows on the categories and responses, to save them as soon as they are changed.

Hope this helps!

answered