Hello. I have a form and before user sees it I have a pre-load page. There I do a lot of cool stuff. My plan was to have users come to this pre-load page from one of two places:
- The main menu and then create a new record.
- A page with a list and then edit the record they clicked.
I understod that the pre-load page had to create the record if it didn’t exist. I solved this with conditional actions and only ran “create” when user came from main menu. So far so good.
But now when I made the list on another page and link that to my pre-load page I can’t access the current record. Data missing. I read up on why and realize Adalo won’t trust me to do this.
As a workaround I thought about just sending the id of the record I want to update and do a get record based on that. But can’t figure out how to do a single get. Do I have to make it a list and filter it on the ID? But then how do I get Adalo to autoclick it so so I get access to current record in the form-page… ?
I would really like to only use one form for create new record AND edit record. Is this not possible? Or insanely bad practice even if I would succeed? Should I just duplicate my preload page and form… ?