Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Item XPath
Items of a table content change depending on this setting. Default is " * " which sets it to regard all items as in the same structure. If you want to use different contents for different items you should dictate it by specifying an XPath. 

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".

Include Page
Hierarchy XPath
Hierarchy XPath

Code Block
languagexml
<Folders>
    <Folder>
		<Name>folder1</Name>
	</Folder>
    <Folder>
		<Name>folder2</Name>
		<Folders>
        	<Folder>
				<Name>folder2a</Name>
			</Folder>
        	<Folder>
				<Name>folder2b</Name>
			</Folder>
    	</Folders>
	</Folder>
</Folders>

...