Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
<script src="Scripts/stimulsoft.reports.js"></script>
<script src="Scripts/stimulsoft.designer.js"></script>
<script type="text/javascript">
function onLoad() {
var designer = new Stimulsoft.Designer.StiDesigner(new Stimulsoft.Designer.StiDesignerOptions(), "StiDesigner", false);
designer.renderHtml("content");
var report = new Stimulsoft.Report.StiReport();
report.loadFile("/Reports/SimpleList.mrt");
designer.report = report;
}
</script>StiDesigner(options, id, false) — the client designer; renderHtml("content") mounts it into the control's element.designer.report = report — loads a template for the user to edit.