Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
onAfterRender event.report = StiReport()
report.onAfterRender += 'afterRender'
if report.processRequest(request):
return report.getFrameworkResponse()
report.loadFile(url_for('static', filename='reports/SimpleList.mrt'))
report.render()
js = report.javascript.getHtml()
html = report.getHtml()
return render_template('...html', reportJavaScript=js, reportHtml=html)report.render() — emits the JS that builds the report on the client; nothing renders server-side.onAfterRender — fires when the client-side build finishes, so you can inspect or display the result.