Add widgets/controls from microflow to a page

0
Hi, I’m building a dynamic survey app. The response to a question would drive the next question. Is there a way to dynamically (at run time) add controls to a page?
asked
2 answers
2

Not entirely sure what your desired outcome would be...but what you can do is:

1. Use an on change microflow or nanoflow that depending on the outcome field changes a boolean value
2. Add conditional visibility to show or hide buttons on the page depending on the boolean value
 

answered
2

Hi Gunjan, As I understood that, you want to display set of questions one by one, to the user based on the response on current question. Let say user has entered the correct answer for the first question then the next question will be based of the current answer however if the user answered incorrect then the question will be based on that. 

This can be implemented in multiple ways, The simplest way I can think of to create  2 additional flags, one you can use to show/hide or for editable conditions and the next flag to pick the question based on their  response, You can either use OnchangeEvent or any button , as per your design.

 

Hope it will help you.

answered