Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

You can configure a detail element to display:

  • Static text   

  • Source data property

  • Combination of static text and source properties

How to create the binding expression

  • Select field or click on the  button in the Source Properties pane;
  • Find the property in the tree and select it to add to the binding. Note: only the properties that are valid for binding are shown in the tree.

  • 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 replaced with the value of the property. Texts outside of the {} are static and not changed.

FeatureExpressionDescriptionExampleDisplay
Static textAny textDisplay a static text.HeaderHeader
Single property{Property}Display the value of the bound source property.
  • {PO_NUMBER}
  • {PO_ADDRESS.CITY1}
  • 4500010000
  • Sydney
Multiple property{Property1} {Property2}Display the concatenation of the value from multiple properties. 
  • {CostCentreNumber} {CostCentreName}
  • 1234 Sales 
Combination of static text and propertiesText1 {Property1} Text2 {Property2}Combining static text (including space) and properties to display more descriptive information or complete sentences.
  • Quantity: {OrderQuantity} {UoM} @ ${UnitPrice} / {UoM}
  • Quantity: 10 EA @ $10 / EA
Date and time format
  • {Property:dd/MM/yyyy}
  • {Property:yyyy-MM-dd hh:mm:ss}
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
  • {CreatedOn:dd/MM/yyyy}
  • {ModifiedOn:dd/MM/yyyy hh:mm}
  • 12/02/2019
  • 16/02/2019 10:10
Number{Property:#.00}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 
  • {}



  • No labels