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.
onBeginProcessData event — the values never reach the client.def beginProcessData(args: StiDataEventArgs):
if args.dataSource == 'customers' and len(args.parameters) > 0:
args.parameters['Country'].value = 'Germany'
viewer.onBeginProcessData += beginProcessDataonBeginProcessData — fires before the database request; inspect args.dataSource to target the right query.args.parameters['Country'].value — set the SQL parameter server-side; changes are not sent to the browser.