Summary Page for Multistage Form

I’m in the process of building a multi-stage form based on this example https://www.wix.com/code/home/example/Multistage-Form and I’d like to have a final slide where the user can see all the selections they have made before submitting the form.

I’m guessing I need to write some Java to extract the selections from the data base and display them on this review slide?

Can anyone help by giving me an example of code I could use to create this?

Hello Dora,

You can do this by either one of two ways:

  1. Saving the values in local storage
  2. Saving the values in variables

I recommend saving the values in variables it will look like this:

User clicks next button → Input field values are stored in object or variables → goes to next stage of form → repeat until you get to review slide with submit button.

On this review slide you will have all the input values stored and you can just set the text of the text elements to be those values.

Goodluck!
Majd