
Hey Folks,
Odd questions, maybe, but I have a business requirement that would benefit greatly from submit and add and a submit button. I'd like the client to be able to add some general information on the first step, and on the 'second' have it loop a different tab when you click next. Unfortunately, I can't figure out how to get it to create a new record each time you click "next." Is there any way to do this?
Specifically, I want places to be able to enter general information about their organization and record multiple volunteer opportunities using the portal without having to enter their organization info for each specific volunteer position.
Let me know if I should clarify anything!
Thanks!
Mstr
*This post is locked for comments
I have the same question (0)I was able to do something pretty close to what I was trying to do at the very least. I noticed that if I hit back on my browser I'm able to resurface the information in the fields. Instead of making multiple steps, I had to surface all fields in one step and I added this button to the web template:
<input type="button" value="Back to Submission Form" onclick="history.back(-1)" />
I then used the confirmation text to direct them to use the button to submit another position.
The downside is that the button persists on the form page, but naming it something that would be silly to click on the form helps negate any user confusion. I'm sure I'll keep working and if I find a better way, I'll keep this updated.