Showing the Designer Immediately after Running an App
Our sample projects and report templates can help you learn the basics of working with our products.Embed the report designer in JavaScript, load a template, and connect its editing and save actions.
Designer setup. Configure the designer, load the report template, process its callbacks, and connect the save action to the application.
Designer setup. Configure the designer, load the report template, process its callbacks, and connect the save action to the application.
var designer = new Stimulsoft.Designer.StiDesigner();
var report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/SimpleList.mrt");
designer.report = report;Creating the designer with default options and assigning a report is enough to display it immediately — useful for applications whose main purpose is report editing, where the designer is the first thing the user sees.