Making a tabbed form

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.

Thanks!

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.

Thank you mate! I’ll give it a go when I get home. Thanks for the response.

Hey
Just to show you I recorded a small video that shows one of them I did.
https://screencast.com/t/MgyGQTQC

$w.onReady( function () {

});

export function button4_click(event) {
$w(‘#slide’).changeSlide (0);
}

So I used this code and it didn’t work, any ideas?

I realised what I’d done wrong all along - thanks :slight_smile: