Hi, does anyone know how (if its possible) to make a multistage form in wix, using their own user input elements. I know i’d need to add JS but I don’t know how. I have attached a link to what I want - i want this and I want it to connect to my wix database.
Hey
Just add a SlideShow to your page, add whatever form input fields you need, connected to dataset or not. Hide the navigation arrows but show the progress dots. Then add a button for NEXT and then one for BACK and add event handler on the buttons.
In the button onClick event handler use the below code to navigate to the next page.
$w("#mySlideshow").changeSlide(0); 0 = first and so on
Using the slider you can also add all kinds of effects when you change slide. I have used it several times just like you want and it works awesome.