Data Connection

hello, I’m having trouble with connecting the same database collection to different pages on my website. for example, a form that requires 3 different steps located on 3 different pages. Does anyone know how I can do that?

You would need three separate datasets and connect those to the corresponding collection. Another solution is to have the form on one page and use a slideshow.

There are several configuration steps involved with each page. On the first page, the code below will get the new record added (where “dataset1” is the name of the dataset used in this example). That would be the only coding necessary for this approach.

Then for each page, you will need to do the following:

  1. Add the dataset, connect it to the right collection, and configure it to be read/write.

  2. Add a button and in the far right “connected to data” configuration button, make it a submit button. A submit button saves the data when clicked. In the “when successful, navigate to” option, choose “a link”. Then, and in the select page area choose the page that you want it to go to next.

  3. Make sure the inputs, “Full Name” in this example, are connected to the right field.

I d have separate datasets, but then when I go in the dataset collection the fields get filled separately also…