I am very new to coding and to WIX! So apologies in advances for wasting your time with such a basic question, but I ran out of ideas and need a little push.
Here is the thing:
I created a new collection, linked it to a form and then linked the submit button to the dynamic page (title).
In the dynamic page (title) I want to display a text with the name and the company the user input on the form.
So I understand that I need to define name, but I dont know how to do that… can you help?
I am getting ‘Welcome undefined’ instead of Welcome (title)…
The element called #name is on the original page, so the page you are displaying the value on is on a page that doesn’t have an element called #name to pull the value from.
To make this work you should use the wix-storage API to set the value of the name field to the local storage when the user clicks the submit button. Then on the next page you can get the item from the storage and display the value.
DATABASE-X is connected with with DYNAMIC-PAGE-B (via DYNAMIC-DATASET)?
The form is on PAGE-A ???
Now you want to have the NAME of a USER to have on the DYNAMIC-PAGE, after submitting the form ?
Right situation?
If so, then you surely do NOT need the Wix-Storage.
When you submit your DATA, it should be written into your DATABASE-X right?
There you will have some columns/references (column1: NAME, column2:LAST-NAME and so on).
The data you need is already there in your DATABASE-X.
The only problem is, i think you will have to CODE the SUBMISSION-PROCESS.