Ytria logo DOCUMENTATION
⚠ This page requires javascript enabled in browser
Automation / All products Automation / Grid Actions

 

Tag: Reset

The Reset action, along with a Target attribute, lets you automate the 'Restore Grid to Original Order' option found in the flexYgrid toolbar and right-click menu.

<Reset Target="UserActivity"/>

Tag Attributes

AttributesAttribute ValueValue DescriptionComment
TargetThe corresponding Grid CodeSets the target grid to carry out the action onNot mandatory.
If no target is set, the target will default to the main grid (for products containing a main grid).

Detailed Description

The Reset action will have the same effect as clicking the 'Restore Grid to Original Order' button in a given flexYgrid panel's toolbar, or selecting this option in the right-click menu.


Example Script

<?xml version="1.0" encoding="UTF-8"?>
<ytriaAutomation Application="databaseEZ" ApplicationVersion="16.5">
<Load Server="ACME01/ACME" Select="True"/>
<Option Type="AllNoteCounterColumns" value="false"/>
<Option Type="NoteCounterNbOfDesigns" value="true"/>
<Option Type="NoteCounterNbOfViews" value="true"/>
<Option Type="NoteCounterNbOfFields" value="true"/>
<Select Lines="All"/>
<LoadCompleteDB/>
<GroupBy ColumnID="D5"/>
<GroupBy ColumnID="D0"/>
<Move ColumnID="I20" Index="3"/>
<Sort ColumnID="D5" Ascending="True"/>
<Sort ColumnID="D0" Ascending="True"/>
<Export>
<SetParam field="FilePath" value="D:total_server_report.html"/>
<SetParam field="ExportType" value="HTML"/>
<SetParam field="SelectedRowsOnly" value="False"/>
</Export>
<Reset Target="Grid"/>
</ytriaAutomation>

In script above, the server ACME01 will be completely loaded into the main grid of databaseEZ, the desired Note Counter columns will be added, and all rows within the grid will be selected. Two groupings will be made: one on Column ID "D5" and one on Column ID "D0". Then Column ID "I20" will be moved into 3rd position in the grid. The two grouped columns will be sorted, and the entire contents of the grid will be exported to an html file. The grid will then be reset to its original order.