I have a notes field in the right side of my multi-page.
I’d like the contents of this field to be persistent no matter how the user navigates the form pages.
Any bright ideas?
I’ve got the elite perks but the pass-through perk requires a form to actually be submitted, so that’s no good.
The great support staff over there also suggested using the Populate anything perk with live merge tags, but this would only work in one direction. So if the user is on page 3 and jumps back to page 1, the changes wouldn’t carry over.
I’m not sure as to performance comparison. I would guess that the solution I link might be a bit more performant, as less form data is being passed around — just a restructuring of the DOM.
A little update to this. If you’re using fieldsets in your form you need to adjust the class the script is prepending to. Instead of .gform_fields, use .gform_page_fields.
Otherwise the script will insert the field once for every fieldset on your page since that create a new ul with the class .gform_fields. In my case it was 7 and it was a bit of a mess.