Having an issue with my submit button.
When I fill out the form (popup), the text automatically displays behind it, which is what I want it to do.
However, once I click the submit button, it disappears.
Any tips on how to fix this? Thank you.
The screen texts in the background are probably being linked to the popup inputs. When you create the task and reset the inputs, the text also disappears. To resolve this, you need to use a conditional that says when the page/group task is empty, it will show the input value, but when the page/group task is not empty, it will show the value that was saved in the database.
Thank you for your reply…Do I put the conditional in the popup or the group? There are also different texts in the group (i.e. date, name, status, etc.) so if I do need to do the conditional for the group, I’m assuming I have to apply it to all aspects or can I click on the group as a whole and do it simultaneously? I’m not sure why status is is the only one that also shows up, but I will try the conditional suggestion once clarified.
Thanks.
Usually, the disappearing text happens because the data you’re trying to show is tied directly to the popup input’s value, which resets after submission. Using conditionals to check if the element’s data source is empty versus showing saved database content is definitely the right approach. Glad to see helpful replies already guiding things in that direction! Keep experimenting — once it clicks, it really opens up your flexibility with popups and data handling.