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.

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.