Skip to content

Form Data Query

This data source may be used to fetch data from current form.

Query

Source XPath
XPath to fetch data from the form.

Results

Options to map and format result data.

Item XPath
XPath of item that will be listed in dropbox. If it is left empty, which is the same with * value, all resulting items are being listed.

List Item Formatting

Customizes format of dropdown's options.

Display Text Format
Specify the format to display result text. You can use column names inside curly braces. Ex: {{Name}} - {{Id}}

Value Format
Specify the format of value. You can use column names inside curly braces. Ex: {{Id}} - {{Type}}

Selection Mappings

In order to map the selected data from current form into an XPath, create a mapping by pressing Add New button.

Source
Node name to map its data.

Target
XPath to map data into.

Hierarchy XPath
In a nested xml node structure, for example if your XML looks like the excerpt below, you may specify the starting node of the recurrence. In this example Hierarchy XPath is "Folders".

<Folders>
    <Folder>
        <Name>folder1</Name>
    </Folder>
    <Folder>
        <Name>folder2</Name>
        <Folders>
            <Folder>
                <Name>folder2a</Name>
            </Folder>
            <Folder>
                <Name>folder2b</Name>
            </Folder>
        </Folders>
    </Folder>
</Folders>