Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Table of Contents |
---|
To get workflow activity information of the current assignment:
To get user information of the performer of an activity:
To get activityDefId (activity definition ID), mouseover the activity name in the Activity Mapping tab (Workflow Management Console); there will be an overlay showing the ID.
To get data from form table:
...
Wiki Markup |
---|
\#form._formDataTableName_._fieldId\[record id\]_\# (Only available in 3.1) |
...
For
...
example:
Code Block |
---|
} #form.registration.registeredDate# #form.registration.registeredDate[0001]# #form.registration.registeredDate[{variable.recordId}]# //using nested Hash Variable with curly bracket. {code} h3. Workflow Variable |
To get the value of a workflow variable:
For example:
Code Block |
---|
To get the *value of a workflow variable:* * \#variable._variableName_\# For example: {code} #variable.approvalStatus# {code} h3. Date To *get date time* according to a specified format: * \#date._javaSimpleDateFormat_\# (refer to [ |
To get date time according to a specified format:
For example:
Code Block |
---|
] for more formatting patterns) For example: {code} #date.h:mm a# // 12:08 PM #date.EEE, d MMM yyyy h:mm:ss a# // Wed, 4 Jul 2009 12:08:56 PM {code} h3. User |
...
...
...
To
...
get
...
user
...
information
...
based
...
on
...
username:
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
For
...
example:
Code Block |
---|
}#user.admin.email#{code} |
Apart
...
from
...
all
...
of
...
the
...
existing
...
...
...
...
...
...
...
...
as
...
described
...
above,
...
these
...
are
...
the
...
new
...
hash
...
variables
...
supported
...
in
...
v3.
...
...
Children Display | ||
---|---|---|
|
Since version 3.0.3,
...
a
...
Hash
...
Variable
...
can
...
be
...
used
...
inside
...
another
...
Hash
...
Variable
...
to
...
form
...
a
...
Nested
...
Hash
...
Variable.
...
The
...
syntax
...
for
...
the
...
inner
...
Hash
...
Variable
...
is
...
wrapped
...
by
...
a
...
pair
...
of
...
curly
...
bracket
...
'{'
...
and
...
'}'.
...
Syntax:
Code Block |
---|
}#prefix.{prefix.variableKey}#{code} |
Example:
Code Block |
---|
} #date.{envVariable.dateFormat}# #user.{variable.username}.firstName# #form.tableChild.field1[{form.tableParent.childId}]# {code} |