formData.getAdditionalValues

(FintechOS Studio 20.1.1 and later)

Reads all objects that were defined in preceding form steps using formData.setAdditionalValue.

Syntax

Copy
formData.getAdditionalValues(): IAttributeValue[];

Return Value

Returns an array of JSON objects containing all the objects' names and values.

For example:

Copy
[
    { Attribute: "start", Value: Date Thu Oct 22 2020 20:00:39 GMT+0300 (Eastern European Summer Time) },
    ​{ Attribute: "value1", Value: "666, the number of the Beast" },
    { Attribute: "value2", Value: logContent(callbackContent) }
]

Examples