Report (value of type)
From JRapid
Report actions are used to display reports inside the application .
Usage
To create a Report Action you should specify that the action is of type "report" and then specify the name of the report.
Example
- Creating a Report Action:
The following action opens a report for a selected Employee instance inside a listing.
<entity name="Employee" label="Employee">
...
<property name="review" label="Review">
<action type="report" label="See Report" location="form" report="EmployeeReport" />
</property>
...
</entity>
