Amend Remote Form

You can configure some elements of the remote form in the Message Template. Refer to Remote Action Message Templates for details and examples.

Requirement! To create new remote forms requires Extender Developer Edition.

Refer to https://remote-actions.readthedocs.io/src/customize_a_form.html# for details.

Customize a Form

Note: If you need to customize the form, first create a copy of one of the standard Remote Action scripts workflow scripts. If you amend the standard actions, your changes may be overwritten in a future product update.

Change field properties:

You can change the field label: for example, change "Comments" to "Notes"

In Configurator actions, fields are set to Required.

You can change the setting 'required' : False

Add new fields to the form.

Field types used in the Configurator actions include Text and Amount.

To add a new field, give it a name and set its properties.

Dynamic Initial Values

You can change the initial value

Copy

RemoteAction-Form-Control

# if you change the name property, create a workflow value with the same name
form_controls = [
                    {
                      'name': 'APPROVALCOMMENT',
                      'type': 'textarea',
                      'label': 'Comments',
                      'required': True,
                    }
                ]