How to save form and continue later?

  • brucekowalczyk
    Asked on February 18, 2016 at 8:29 PM

    can I turn the form off and then back on later? If so how do I do this.. thanks Bruce

  • BJoanna
    Replied on February 19, 2016 at 3:43 AM

    If I understood you correctly, you want to save form and continue later. There are two ways to achieve this:

    1. How to Enable Auto fill feature - save form entries to continue later 

    Auto fill method is based on browser local storage. It is saving the form data on users browser, so user can open the form later and he/she will see the past data. Note - user will need to use same computer and browser to access data.

    2. How to save form to continue later (Session method)

    The Session method is saving the data on our servers. With this method you will need to use two forms, one for session generation and second as primary. Then users will be able to access their sessions from any locations.

    Hope this will help. Let us know if you need further assistance.