Versions Compared

Key

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

Any form can be rendered as read-only by appending the form URL with the parameter _readonly=true. In read-only mode, all controls are disabled from entry including dropdowns, repeats and upload controls. The default value is false. Here is an example of the Raw Form Link with the &_readonly parameter appended.

Code Block
http://localhost:8082/frevvo/web/tn/rap.com/user/Jack/app/_nYcM4Y75EeG7rbJC5D8oyQ/formtype/_pZqaoITGEeKOuqvcfSYuCg?_method=post&embed=true&_readonly=true

The form that displays will not allow data input in any of the controls. Notice that clicking on the Dropdown arrow does not display choices.

...

Code Block
if (form.load)
{
name.value = 'Jack Smith';
Tab1.selected = true;
}

Notice the The Review Tab is selected because the rule executes .

...