The getValuesByPath
method gets all values of a document field. The field is specified by its path, which means that you can get values from a sub field.
getValuesByPath( path )
Argument | Description |
---|---|
path
|
(string) The path of the field. |
(Strings). Strings that contain the values. To map the return values to a table, surround the function call with braces. For example:
fieldvalues = { document:getValuesByPath("myfield/subfield") }
|