Search found 3 matches

by Alina
Tue May 07, 2024 9:38 am
Forum: Stimulsoft Reports.JS
Topic: How to split reports during saving
Replies: 1
Views: 93

How to split reports during saving

Hello I merge several reports into one to display in one tab. I do it like this: Promise.all(promises).then(() => { reportMerge.renderAsync(function () { reportMerge.renderedPages.clear(); // Добавление страниц из каждого отчета в общий reports.forEach((report) => { for (let index = 0; index < repor...
by Alina
Thu Apr 11, 2024 8:35 am
Forum: Stimulsoft Reports.JS
Topic: Several reports in one viewer
Replies: 3
Views: 408

Re: Several reports in one viewer

I use this code: const viewer = new window.Stimulsoft.Viewer.StiViewer( options, "StiViewer", false ); const report1 = new Stimulsoft.Report.StiReport(); report1.load(this.jsonReport); const report2 = new Stimulsoft.Report.StiReport(); report2.load(this.jsonReport); const reportMerge = new...
by Alina
Thu Apr 11, 2024 7:32 am
Forum: Stimulsoft Reports.JS
Topic: Several reports in one viewer
Replies: 3
Views: 408

Several reports in one viewer

I have several reports. How can I merge them? Show one after another in one viewer.