Form builder reloading page does not preserve values

When fill the form and reload the page all the values in form are lost. Is it there a way to preserve those values?
1 Reply
DrByte
DrByte6mo ago
If you don't submit the form, no. That's the default behavior of a browser. If you're familiar with javascript's LocalStorage capability, you could explore using that to remember everything entered and clear it when they click Submit. But there are pros and cons with using LocalStorage, including forgetting to clear what was previously entered, which can then expose sensitive information to the next person coming along.