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.
onOpenedReport event lets you modify a report — or swap it entirely — on the server before it reaches the browser.def openedReport(args: StiReportEventArgs):
# Change a field of the opened report...
args.report['ReportAlias'] = 'Report Alias from Server-Side'
# ...or replace it with another template
with open(filePath, mode='r', encoding='utf-8') as file:
args.report = file.read()
viewer.onOpenedReport += openedReportonOpenedReport — fires after a report is opened, before it is assigned to the viewer.args.report, or assign a whole new template string to it.