You can configure a detail element to displayOneList data binding is capable of displaying the following information:
...
- Select field or click on the button in to open the Source Properties paneSelector;
- Find Select the property in the tree and select it to add to setup the binding. Note: the tree only shows the properties that are valid for binding are shown in the treecurrent context.
- Continue the above step to bind multiple properties to the same field.
- Optionally, edit the binging expression to
- Change the order of the properties;
- Add static text;
- Add formatting; .
Syntax of the binding expression
Path of the source property is enclosed with {}. The text including the {} braces are is replaced with the value of the property. Texts outside of the {} are static and not changed.
Feature | Expression | Description | Example |
---|
Display | Static text | Any text | Display a static text. |
Header | propertyproperties | {Property} | Display the value of the bound source property. |
Div |
---|
| { "PO_NUMBER": "4500010000", "PO_ADDRESS": { "CITY1": "Sydney" - {PO_NUMBER} => 4500010000
- {PO_ADDRESS.CITY1}
|
|
|
|
Multiple property | {Property1} {Property2} | Display the concatenation of the value from multiple properties. |
|
{CostCentreNumber{ "CostCentreId": "1234", "CostCentreName": "Sales Office" } - {CostCentreId} {CostCentreName}
|
|
1234 Sales
|
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. |
Div |
---|
| { "OrderQuantity": 10, "UnitPrice": 10.00 "UoM": "EA" } - Quantity: {OrderQuantity} {UoM} @ ${UnitPrice} / {UoM}
|
|
12/02/201916/02/2019
|
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 |
Div |
---|
| { "OrderQuantity": 100.0, "Weight": 12.50, "Amount": 1500.50, } - OrderQuantity:#} => 100
- {Weight:#.0} => 12.5
- {Amount:#,###.00} => 1,500.50
|
|
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. |
Div |
---|
| { "Texts": ["Line 1", "Line 2"], "Items": [ {"Title":"Item 0", "Value":0 }, {"Title":"Item 1", "Value":100 }, {"Title":"Item 2", "Value":200 } ] } - {Texts[0]} => Line 1
- {Items[2].Title} => Item 2
|
|
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/ |
Div |
---|
| { "Items": [ {"Title":"Item 0", "Value": 0 }, {"Title":"Item 1", "Value": 100 }, {"Title":"Item 2", "Value": 200 } ] } - {Items[?(@.Title=='Item 2')].Value} => 200
The above expression selects the element in the Items array where the element's Title property is 'Item 2' and binds to the element's Value property. |
|
Additional binding configuration
Select the Binding Configurations tab in the Source Property Selector to setup additional binding configuration.
Image Added
A value converter is only required when the bound source property needs to be converted to number or date-time for formating:
- DateTime Converter - converts a string to the native date-time value;
- Double Converter - converts a string to a numeric value;
- SAP Date Converter - converts SAP date string YYYYMMDD to the native date value;
- SAP Time Converter - converts SAP time string to the native time value.
Use Regular Expression to fulfil advanced formatting requirement. More about regular expression can be found at: https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions
Requirement | Regex Setting | Example |
---|
Remove leading zero. | Pattern: (^|\s)0+ | - 000123 Sales Office => 123 Sales Office
- Cost centre: 0000123 Sales Office => Cost centre: 123 Sales Office
|
Format a number that has only zeros | Pattern: (^|\D)0+(\D|$) Replacement: 0, | - 0000 => 0
- Batches: 000, 1 => Batches: 0, 1
|