Versions Compared

Key

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

...

Include Page
Bound Xpath
Bound Xpath
 

Row Id XPath
Give a specific Id for each row by filling this box with an XPath. 

Item XPath
Items of a data 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

Include Page
Hierarchy XPath
Hierarchy XPath

Filter XPath
Filters rows according to this Xpath. The rows will display if their Filter XPath return true.

Export to Excel

This control allows you to export your records to excel. In order to accomplish this, all you have to do is, enable AllowExport in DataExchange and define the columns in this property.

Code Block
languagexml
<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
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.

...

It is also possible to format the data that you want to show. To accomplish this you should use the Template property.

 

Code Block
languagexml
        <Column Align="Left" Type="Text" XPath="">
            <Label>
                <Content><![CDATA[İmha Tarihi]]></Content>
            </Label>
            <Template><![CDATA[{{format(ImhaTarihi,'dd/MM/yyyy')}}]]></Template>
            <Footer>
                <Content><![CDATA[]]></Content>
            </Footer>
        </Column>

...