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
Will be updated. 
In a nested xml node structure, for example if your XML looks like the example below, you may specify the starting node of the recurrence. In this example Hierarchy XPath is "Folders".

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>


Filter XPath
By using Filter Xpath, it is possible to refine the content of the table. For this example, only the rows where IsCustomer node is set to true, will be displayed.

...

<DataExchange AllowImport="False" AllowExport="True">
        <Columns>
            <Column Caption="Form No" Type="Text">
                <XPath><![CDATA[FormNo]]></XPath>
            </Column>
            <Column Caption="Owner" Type="Text">
                <XPath><![CDATA[Owner]]></XPath>
            </Column>
            <Column Caption="Date" Type="DateTime">
                <XPath><![CDATA[FormDate]]></XPath>
            </Column>
        </Columns>
    </DataExchange>

Sort XPath
Will be updated.  Sorts rows with respect to this XPath.

Other

Allow Moving XPath
Xpath to control item movement in list. Please use "0" to disable for always.

...

Allow Delete All XPath
Xpath to control clear the list. Please use "0" to disable for always. 
  

Monitored XPaths
Will be updated. Normally repeating content refreshes itself if specified XPath for filtering, ordering etc. changes. In cases you want to adjust repeating content to watch XPath(s) other than the ones in it, you may specify them at this section.

Other properties

  • Cut is used to move table  content.
  • Copy is used to copy table content.
  • Delete is used to delete table content.
  • XML is used to view or add xml of the table content.
  • Convert is used to change table content to other content controls.
  • Add new is used to add the new columns in to table.

...