Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
maxLevel1

Go To

...

URL

You can forward the user from one  form to another by specifying the URI URL of the second form in one of the Form Action  wizards in the first form. When the user clicks Submit on the first form, you can choose to:

  • Display the second form with data passed from the

...

  • first form - use the Post data and forward users to your web page wizard.
  • Display the next form without the data - use the Forward users to a web page of your choice wizard.

This feature is not available for workflow at this time.

Go To a Second form from the first form

Suppose you have two forms in your application. One named ''formA'' and the other named ''formB''. When the user clicks the submit button on formA you want them to next see formB next. In formA you open the form's edit properties and set the form action to "Go to URL" and Edit formA and click on the Image Added Form Action icon. Select the Forward users to a web page of your choice  and enter the raw form URL for formB in the URL property field you put the URI for formB.

This URI The raw form link URL can be found by clicking the  Share Share icon for your form formB on the Forms Home Page.

Here is an example of a formformB's URIraw form URL:

Code Block
httphttps://www.frevvo.com<your server>:<your port>/frevvo/web/tn/<your tenant name>/user/designeru/60b97620-6e5b-4d97-a93e-6b81e803a671/app/_DrBPUXM5Ed-glKSGT35lJAmzwYwGMrEeeemceeobqUCg/formtype /_2j2vsJNAEd-Hauq_h2T-4Q6NZG8GMrEeeemceeobqUCg?_method=post&embed=true

For portability, we recommend you use relative URIs such as:

...

Passing data from formA to formB

If formA and formB both contain the same data source, and the Form Action in form A is set to '''Post''' to the raw form Url of form B, then form B's fields from schema will be initialized with the values entered into form 1. Follow these steps:

  1. Create formA and formB from the same schema.
  2. Edit formA
  3. Select the Image Added Form Action icon
  4. Select the Post data and forward users to your web page wizard.
  5. Enter the raw form link for formB in the URL property of the wizard. Here is an example of the raw link share URL

    Code Block
    http://<your server>:<your port>/frevvo/web/tn/<your tenant name>/user/max/app/_

...

  1. mzwYwGMrEeeemceeobqUCg/formtype/_

...

  1. 6NZG8GMrEeeemceeobqUCg?_method=

...

  1. post&embed=true

...

  1. Test formA by filling in the fields and clicking Submit. formB displays with the fields populated with the data in formA.

    Image Added

Using Templates

Fields in form B can also be initialized with data from form A using Url Parameters. Imagine form A contains a from palette text control labeled 'Customer Name' with Name property set to 'custName'. And form B has a palette text control labeled 'Full Name' with Name properity set to 'fname'. Using either Form Action Go to Url or Post with the URL set to that of Form B, append &_data=(fname:'{custName}') and when form B loads it's 'Full Name' field will be set to the value entered into form A's 'Customer Name' field.

...