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.
<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>

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.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.