Number Format
Formats a number.
Syntax:
decimals:int1;decimal-point:char1;separator:char2;
Where:
int1 is the number of decimal points to display.
char1 is the character to use as a decimal-point.
char2 is the character to use as a thousands separator.
The properties are optional and you can use them in any combination using the format Property:value;.
Sample Code
<field name="YourAPI_Number_FieldName" format="decimals:2;separator:,;"/>
results in a number that looks like this: 1,234,567.89
SECTIONS