I’m currently building a use case with the following scenario:
-
User enters data in form.
-
user clicks “save project”
-
User clicks “Load project” on a new page.
-
The initial form gets loaded with the data that user entered in step 1.
Accomplished this task till point 2. Saving the data in database.
How do I retrieve it and have user inputs pre-filled with the saved data?
It may be a noob question - so pardon me for that.
Thanks!
Hello! It is a good question. Many new users struggle with this. It is okay. This is a great place to get help.
All you have to do is send that data to a group.
Check this link:
Thank you, @grace.hallak
But what I’m looking to do is upload the data entered on one page to show up on another page inside relevant input fields.
Do you know how that can be accomplished?
Thanks
My bad. You can use URL Parameters.
Check the link:
My bad. You can use URL Parameters.
- When the save button is clicked, it goes to another page and sends the data via URL Parameters (key1, key2, key3)
- You can see when you go to he next page that its URL contains the parameter https://filestructure.bubbleapps.io/version-test/forms2?debug_mode=true &key1=Hello&key2=Father&key3=22 the inputs takes the data from the URL Parameters. In this case, key1 which has the First name so the input where you want to display the First name takes “Hello” from key1 parameter. Same goes to the other parameters.
Check the link:
You shouldn’t need url parameters. For your second page, make the type of the page user.
Then for your workflow to access the second page from the first it should have 2 steps.
- Go to page.
- Display data in page using the result of the previous workflow step where you created the user.
1 Like
Nice way. Didn’t think of it.