Editing a Report in the Designer
Our sample projects and report templates can help you learn the basics of working with our products.The Reports.JS designer embeds in a Wisej.NET application the same way as the viewer, giving users a full report editor inside a C# web app.
Build the designer on page load.
How it works. The full designer runs in the browser inside the Wisej page, so users author and edit reports without leaving the C# web application.
Build the designer on page load.
<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.
How it works. The full designer runs in the browser inside the Wisej page, so users author and edit reports without leaving the C# web application.