Grid Control 2.0

Create Panel Actions in Grids

Technologies > User Interface Add-Ins > Parts for Reports > Report with Parsed Restriction

Technologies > User Interface Add-Ins > Parts for Reports > Running a Workflow Rule from a Panel Action

Report commands can refresh reports, open form dialogs to edit data records, or call workflow rules that implement custom business logic.

As with the edit form panels, the action elements defined within the report panel are displayed on the panel title bar. An example of its use is as an Add New record button:

<panel type="grid" ...>
<action>
<title translatable="true">Add New</title>
<command type="showPanel" panelId="edit_form" newRecord="true"/>
</action>
...
</panel>

Commands can be chained together within one action. Chained commands are executed in the listed order. If one of the commands fails, the execution is stopped.

<action>
    <title>Invoke Hello World</title>
    <command type="workflowRule" ruleId="AbSolutionsMyAdn-helloWorld"/>
    <command type="showPanel" panelId="reportPanelWFR_report"/>

</action>

Example view 1: http://localhost:8080/archibus/schema/ab-products/solutions/parts/grid/ab-ex-report-grid-rm-restriction.axvw

Example view 2: http://localhost:8080/archibus/schema/ab-products/solutions/parts/grid/ab-ex-report-panel-workflow-rule.axvw