Load Grid Configuration from File
Tag: GridDataComposition
The GridDataComposition action will apply a previously saved grid configuration file to a grid.
<GridDataComposition FilePath="C:\dev\Temp_XML\mainGridConfig.xml"/>
XML

\

Tag Attributes
Attributes | Attribute Values | Value Description | Comment |
---|---|---|---|
Target | The corresponding Grid Code | Sets the target grid on which to carry out the action. | Not mandatory If no target is set, the target will default to the main grid (for products containing a main grid). |
FilePath | User definable | The folder path that contains the Grid Data Composition XML file | Mandatory |
Reset | UserDefault YtriaDefault | Will return the grid to the specified default setting | Not mandatory |
Server | Abbreviated server names (separated by comma) | Only applicable in consoleEZ | |
Index | Positive integer | Window index number | Only applicable in consoleEZ |
NOTE |
|
---|
Example Script
<?xml version= "1.0"encoding= "UTF-8" standalone= "no"?>
<YtriaAutomation Version= "1.0" Application="databaseEZ" ApplicationVersion="16.5" Console="true">
<Load Server="Acme01/ACME" partial="true">
<Load Database="AutoTest\Im_us_8.nsf" Select="True"/>
<Load Database="AutoTest\Im_nab_8.nsf" Select="True"/>
<Load Database="AutoTest\info_s03.nsf" Select="True"/>
<Load Database="storebackup.ntf" Select="True"/>
</Load>
<Execute Filepath = "C:\dev\Temp_XML\databaseEZ_secondaryscript.xml"/>
<GridDataComposition FilePath = "C:\dev\Temp_XML\databaseEZ-grid1.xml"/>
<GroupBycolumnID="CI2"/>
<GroupBycolumnID="CI3"/>
</ytriaautomation
XML
In the script above, the databases indicated in the Load
block will be loaded into the main grid of databaseEZ, and the file "databaseEZ_secondaryscript.xml" will be executed as if the entire contents of the secondary script were included in the Execute
line's position.