...
- solution: The name of the current solution in the solution repository
- path: The path within the solution repository
- name: The name of the prpt within the repository
- action: The name of the xaction within the repository
- renderMode: one of
- report: renders the report
- xml: returns the parameter description document for the UI
- subscribe: for managing subscriptions
- download: Downloads the prpt file, if the user has the correct permissions
- paginate: Boolean
- autoSubmit: Boolean -> true = autosubmit, false = manual submit, null: show checkbox
- autoSubmitUI: boolean: the default value for the autosubmit checkbox (DEPRECATED: use a suitable report attribute instead or configure the global default in the configuration files)
- subscribe: Boolean
- subscription-id
- subscription-name
- destination: used for subscription reports
- output-type: The output type specified as mime-type. This provides a generic way to select the output-target and possibly requires additional parameters to work.
- text/html
- application/vnd.ms-excel
- text/csv
- application/rtf
- application/pdf
- text/plain mime-message/text/html
- html
- xls
- csv
- rtf
- txt output-target: Allows more fine-grained control over the output by specifying the output-target directly. One of:
- table/html;page-mode=stream
- table/html;page-mode=page
- table/excel;page-mode=flow
- table/csv;page-mode=stream
- table/rtf;page-mode=flow
- pageable/pdf
- pageable/text
- mime-message/text/html
- dashboard-mode: Boolean
if "true": If the export generates HTML, the report will generate a body-fragment (content without the HTML, HEAD and BODY tags and all styles inlined into "style" attributes), which is easy to include in dashboards or other HTML pages.
This is the same result as if the report configuration property "org.pentaho.reporting.engine.classic.core.modules.output.table.html.BodyFragment" has been set to true. - report-definition: InputStream, only usable in XActions
- useContentRepository: Boolean
- accepted-page: Int, the name of the page that should be shown when in paginated-html-mode
- print: Boolean
- printer-name: The (optional) name of the printercontent-handler-pattern: when exporting to HTML, the name of the content handler servlet that sends images and css files to the browser.
- showParameters: boolean, disables the parameter ui completely
- report-definition: InputStream, only usable in XActions
- useContentRepository: Boolean, only usable in XActions
- workbook: InputStream, only usable in XActions
- res-url: If the report-definition stream has been given, then this defines the context-url for loading resources with relative paths. (only usable in XActions)
in addition to that, the following deprecated output-types are supported, but will yield a warning everytime they are used. These output-types should no longer be used and support for them will be removed in a future version.
Deprecated properties
- paginate: Boolean (DEPRECATED: use output-target parameter instead)
- content-handler-pattern: when exporting to HTML, the name of the content handler servlet that sends images and css files to the browser. (DEPRECATED: configure that via a global configuration setting)
- layout (BISERVER 3.6): vertical or flow
- showParameters: disables the parameter ui completely
- ignoreDefaultDates: boolean(DEPRECATED: use report attribute instead)
- ignoreDefaultDates: boolean (DEPRECATED: use configuration instead)
- output-type: (DEPRECATED: use output-target parameter instead)
The output type specified as mime-type. This provides a generic way to select the output-target and possibly requires additional parameters to work.* text/html - application/vnd.ms-excel
- text/csv
- application/rtf
- application/pdf
- text/plain
- mime-message/text/html
in addition to that, the following deprecated output-types are supported, but will yield a warning everytime they are used. These output-types should no longer be used and support for them will be removed in a future version.
- html
- xls
- csv
- rtf
- txt
How the output-target is selected by the simple-reporting-component
...