Versions Compared

Key

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

The table report is a simple way to display your data in a table format using the the  Simple Issue Language™ (SIL) . SIL provides predefined structures and routines that comes in help for generating such a report. 

Table of Contents

Configuring SIL Reporting Gadget

...

To configure the gadget you have to select the sil script file and add the default values for the parameters used in the selected script. 

 

Image Modified

The parameters will be passed into the program using the argv variable. The values will be available using a construct like argv["parameter_name"] or argv[position]. For the above example, the project can be retrieved using argv["projects"] or argv[0]

...

If you want to return information about another projects without having to configure the gadget, all you have to do is add a field for the projects using one of the routines for creating fields from gadget routines. After that you will be able to set parameter in the parameter section and run the report with the new value.

...