Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
var report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/SimpleList.mrt");
report.renderAsync(function () { });
function saveReportDocument() {
var json = report.saveDocumentToJsonString();
var fileName = report.reportAlias;
Stimulsoft.System.StiObject.saveAs(json, fileName + ".mdc", "application/json;charset=utf-8");
}saveDocumentToJsonString serializes the rendered document (not the template) to a string. Saved as an .mdc file, it can be loaded later with loadDocumentFile to display the exact same result instantly.