Apertura scheda gwHtmlReport
La gwHtmlReport è una particolare tipologia di scheda descritta qui.
openGwHtmlReportTab()
Per aprire questa tipologia di tab è esposta l'apposita function openGwHtmlReportTab(). (Dalla versione 4.4.18 in poi)
openHtmlReport() @Deprecated
Deprecato dalla 4.4.18, ma ancora supportato. Usa gli stessi parametri di openGwHtmlReportTab().
Parametri
- reportUrl String, required path to the .jasper file, 'WEB/template/' excluded (ex: 'path/To/file_name.jasper')
- parametersMapObject, optional, default null. Additional parameters. Holds all the available parameters usable opening a tab. And others specific parameters:
- tabWidgetId: String, optional, default null. When provided is used as tabWidget id. Configuring it allow to open report on the already opened tab when needed, basing on tab id check
- reportParameters: Object, optional, default null. This map contains the parameter that will be available inside the report
- gwClassName: String, optional, default null. If omitted the eventual gwClass scope will not to be applied (supported from 4.4.18)
- updateOnChangeInGwClassNameListString: String, optional, default null. Comma separated (',') gwClassNames. This parameter decides to which gwClass publish events will cause a gwHtmlReport tab refresh (insert/update/delete). So when user modifies a gwClassDetail of a specific gwClass, if updateOnChangeInGwClassNameListString contains the specific gwClassName, the tab will automatically refresh itself.
- title String, optional
- insertIndex Integer, opzional. Determina in quale posizione verrà aperta la scheda. Se omesso la scheda verrà aperta a destra, in ultima posizione
@Deprecated
- className: String, optional, default null. Like gwClassName. (Deprecated from 4.4.18), but still supported.
Esempi
Codice minimale dalla 4.4.18
- example.js
var reportUrl = 'path/To/file_name.jasper'; openGwHtmlReportTab(reportUrl);
Codice minimale pre 4.4.17
- example.js
var reportUrl = 'path/To/file_name.jasper'; openHtmlReport(reportUrl);
Esempio con utilizzo di tutti i parametri, anche opzionali dalla 4.4.18:
- example.js
var reportUrl = 'path/To/file_name.jasper'; var parametersMap = { //tabWidgetId: 'custom_tab_id_'+item.cod_entity, reportParameters: { date: new Date(), project: 'P01' }, gwClassName: 'scoped_class_name', updateOnChangeInGwClassNameListString: 'class_name_1' }; var title = 'title'; var gwHtmlReportTab = openGwHtmlReportTab(reportUrl, parametersMap, title);
Esempio con utilizzo di tutti i parametri, anche opzionali pre 4.4.17:
- example.js
var reportUrl = 'path/To/file_name.jasper'; var parametersMap = { //tabWidgetId: 'custom_tab_id_'+item.cod_entity, reportParameters: { date: new Date(), project: 'P01' }, className: 'scoped_class_name', updateOnChangeInGwClassNameListString: 'class_name_1' }; var title = 'title'; var gwHtmlReportTab = openHtmlReport(reportUrl, parametersMap, title);