...
Feature | Expression | Description | Example | |||||
---|---|---|---|---|---|---|---|---|
Static text | Any text | Display a static text. |
| |||||
Single properties | {Property} | Display the value of the bound source property. |
| |||||
Multiple property | {Property1} {Property2} | Display the concatenation of the value from multiple properties. |
| |||||
Combination of static text and properties | Text1 {Property1} Text2 {Property2} | Combining static text (including space) and properties to display more descriptive information or complete sentences. |
| |||||
Date and time format |
| Display date and time in specific format. More detail of date & time format can be found at: https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings |
| |||||
Number & currency format | {Property:#.00} {Property:#.c} | Display number in specific format. More detail of number format can be found at: https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings |
| |||||
Array element | {ArrayProperty[Index]} {ArrayProperty[Index].Property} | Display the text in an string array at the specific index, display a property of the array element at the specific index. Note: index starts from 0. |
| |||||
JSON path query | {ArrayProperty[?(@.Property=='value to be searched')].ChildProperty} | Evaluate the JSON Path Query at runtime and display the selected value. More detail about JSON Path can be found at: https://restfulapi.net/json-jsonpath/ |
| |||||
User defined variable | {var-VariableName} | Display the value of the user defined variable configured for the System. | User defined variables { "Client": 200, "InboxUrl": "https://source.company.com/task.html" } Expression => Display
|
Additional binding configuration
...