Versions Compared

Key

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

...

NameDescription
Prefixform
Description

To get field value from form table.

Attributes
  • #form. tableName . fieldId #
  • #form. tableName . fieldId [recordId]# (Available in 3.1 and above)
Scope of Use
  • In a Process Tool part of a Process.
  • In a Form.
  • In a process design.
Sample Attributes#form.registration.registeredDate# //will use the current record ID
#form.registration.registeredDate[ 0001 ]# //0001 is the record ID to seek for
#form.registration.registeredDate[{variable.recordId}]# //using nested Hash Variable with curly bracket.

Form Binder Hash Variable

Panel
borderColorred
borderWidth1
titleBGColor#ffcccc
borderStylesolid
titleNew Feature

This is a new feature in Joget Workflow v6.

NameDescription
Prefixbinder
Description

To get field value or field label via a form definition id from a custom source.

The 'binder' prefix retrieves the field value, while the 'binder.options' prefix retrieves the field label.

The field value or field label can also be obtained from other apps by including the APP_ID, else it uses the current app context.

By providing the PRIMARY_KEY argument, field value or field label from a different record can be retrieved, else data from the current record id is retrieved instead.

Attributes

 

  • binder.APP_ID.FORM_DEF_ID.FIELD_ID
  • binder.APP_ID.FORM_DEF_ID.FIELD_ID[PRIMARY_KEY]
  • binder.FORM_DEF_ID.FIELD_ID
  • binder.FORM_DEF_ID.FIELD_ID[PRIMARY_KEY]
  • binder.options.APP_ID.FORM_DEF_ID.FIELD_ID
  • binder.options.APP_ID.FORM_DEF_ID.FIELD_ID[PRIMARY_KEY]
  • binder.options.FORM_DEF_ID.FIELD_ID

 

  • binder.options.FORM_DEF_ID.FIELD_ID[PRIMARY_KEY]
Scope of Use
  • In a Process Tool part of a Process.
  • In a Form.
  • In a process design.
Sample Attributes 

App Message Hash Variable (Internationalization)  

...