SelectListControl
is the Variable Name setting's value.
accountType
which displays a list of accounts available at your bank.
userAccount
.
userAccount
.return (this.accountType);
accountTypes
that contains two JSON objects, both of which their key names are type
: "accountTypes": [
{"type": "Life"},
{"type": "Medical"}
]
type
as options in the Select List control, use the following JSON dot notation in the Option Label Shown setting: data.accountTypes
. The JSON array must contain JSON objects composed of key names and corresponding values, not just values like the following: "accountTypes": [
"Life", "Medical"
]
response
by default. Use JSON dot notation as necessary if the relevant JSON array containing the object key name is embedded in other JSON objects and/or arrays. response is the default value.
doctors
id
name
gender = "female"
{{ FirstName }} {{ LastName }}
from which a Request participant entered her first name and last name in separate controls (respectively) earlier in that Request, this control displays the contents of those controls by default during the Request.this.
JavaScript keyword preceding the ProcessMaker Screen control reference. Example: this.FullName
when FullName
is the Variable Value setting value for the control to set its default value.