...
Section | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
...
- edit=(true/false) -- The form will open in the Form frevvo Form Designer when edit=true and in use mode otherwise. The default is false.
- print=(true/false) -- This form will be displayed in print view as if a user had clicked the print icon on the form.
- dispose=(true/false) -- The form instance is deleted after the form is rendered in print view.
- _readonly=(true/false) -- The form will open but you will not be able to enter values into the form when _readonly=true. The default is false.
- _data -- A way to pass default values into form fields via the form URL. See the details here.
- _extId -- A way to have multiple users connect to the same form instance. See details below.
- _layoutID or _layoutID!userID!tenantId-- Dynamically select a layout which takes precedence over the layout selected at either the Project or in the Form. See here for the details.
- _styleID or _styleID!userID!tenantId - Dynamically select a style which takes precedence over the style selected at either the Project or in the Form. See here for the details.
- _formActionURL -- Overrides the form's action set in the Form Designer. See the _formActionURL section. If this parameter is used but equals nothing it will close the window when the form is submitted.
- _formActionMethod=(get/post) - Overrides the form action's method. Defaults to get. See the _formActionMethod section.
- _formActionTarget=(frame/parent/top) - Overrides a form action target. Defaults to frame. See the _formActionTarget below.
- _errorActionUrl - Overrides the form's error action set in the Form Designer. See the _errorActionURL section. If this parameter is used but equals nothing it will close the window when the form is submitted.
- _errorActionTarget=(frame/parent/top) - Overrides a form action target. Defaults to frame. See the _errorActionTarget below.
- locale=<locale code> --- This parameter enables you to translate your form into multiple languages. If not, set the form displays with the language used in the form designer. If set to one of the locale codes the form displays translated to that language.
- _docActionURL – Overrides the "Send Documents" Doc Action set in the Form Properties:Document Actions:Send Documents tab.
- apikey --
- _formTz – This parameter overrides the timezone of the browser/form. Refer to Time Zones for more information.
- _device - (tablet/phone/desktop) –used to show the specified device view in your browser. This parameter is very helpful when testing forms for mobile devices as you can see the phone or tablet view from your desktop.
- _submissions=(ID ENTRY FROM FORM SUBMISSION TABLE) - used to instantiate older submissions of a form or workflow.
- _cancelUrl=(some URL) - This parameter bypasses the standard frevvo standard cancellation message and will redirect the user to the specified URL when the Cancel button is clicked.
- _unsavedWarning=true/false - This parameter displays a browser Warning message when data has been changed and the user closes the browser/browser tab without Saving or Submitting. The default is true.
...
Access to form instance is secure.The form instance cannot be accessed from a different browser or a different device. For Example, if you use the same _extID value in a different browser or on a different device, the form will not load the same instance (i.e the same values filled in the form fields) even if you are logged into as frevvo as the same user.
To utilize this feature, try this example:
...
_formActionUrl params are used directly by to frevvo to re-direct the browser. When the _formActionUrl (or any parameter) is received, it is url decoded by the servlet container. Therefore, it is best practice to encode the _formActionUrl paramater value. It is up to the client the frevvo client to encode passed in _formActionUrls.
...
The designer can override the standard message frevvo message that displays when the user clicks on the Cancel button in a form and redirect them to a webpage of your choice by appending the _cancelUrl=(some Url) to the raw form link. For example, if you want to redirect users to http:www.google.com the raw form link should look like this:
...