User enters data in fields on a page - creating a Thing - then navigates away from that page. How to make it so that when user goes back to previous page where the Thing was created, the Thing created is still there rather than been cleared or reset?
Can you have a flag on the user that is set on page load ?Data is stored on the user as they enter it. If they save then the user temp data is cleared and the flag is cleared. Otherwise on page load you set the inputs to the temp data.
Fiddlier than I thought, as I had forgotten that you can’t “null” a field, so might need to think about to get the default value back into the field when it is cleared.
I think I did something similar just using the “initial value” and have that be a dynamic field that equals that field? For example they could input their address in a form, but say they then notice they made an error, when they go back to The page, the form would now show the values they entered last time.
Hey @grant, thanks much… Could you please a bit more specific how you had set it up? I am struggling with this and can’t figure out how to implement it… I’d really appreciate it.