Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
$viewer->onOpenedReport = function (StiReportEventArgs $args) {
$args->report->ReportAlias = 'Report Alias from Server-Side';
$reportJsonString = file_get_contents('../reports/SimpleList.mrt');
$args->setReportJson($reportJsonString);
};
$viewer->process();onOpenedReport — fires on the server when a report is opened in the viewer, before it is shown.$args->report->ReportAlias — modifies a property of the opened report.$args->setReportJson(...) — replaces the opened report with a different template read from disk.