Versions Compared

Key

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

...

Tip
To conveniently access the list of all hash variables available, use shortcut combination Ctrl + Shift + 3 in any of the components above to bring up the hash variable assistant.
Image Removed
Image Added


Nested Hash Variable

...

Note

The App Variable Hash Variable has the same functionality as the Environment Variable Hash Variable. Both can be used to retrieve App/Environment variable values in Joget DX 8

NameDescription
PrefixappVariable
Description

To retrieve App Variable values.

Attributes
  • #appVariable.keyName #
Scope of Use
  • Anywhere within the Joget app itself. (i.e. Process, Process Tool, Form, List, UI)
Sample Attributes#appVariable.smtpServer#
#appVariable.smtpPort#

Form Data Hash Variable  

NameDescription
Prefixform
Description

To get field value from form table.

Attributes
  • #form.tableName.fieldId #
  • #form.tableName.fieldId [recordId]# (Available in v3.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.

...