Editing a Report Template in the Designer
Наши примеры проектов и шаблоны отчётов помогут Вам разобраться в основах работы с нашими продуктами.This example shows how to load a report template and edit it in the designer. You need to create the report object of the
На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

StiReport type, then load the report template file by calling the loadFile() method. To edit report in the designer, you can simply assign a report object to the report property of the designer:
<script type="text/javascript">
// Set the full screen mode for the designer
var options = new Stimulsoft.Designer.StiDesignerOptions();
options.appearance.fullScreenMode = true;
// Create the report designer with specified options
var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);
// Create a new report instance
var report = new Stimulsoft.Report.StiReport();
// Load report from url
report.loadFile("../reports/SimpleList.mrt");
// Edit report template in the designer
designer.report = report;
</script>На скриншоте ниже Вы можете увидеть результат выполнения данного кода:
