У меня есть отчет как в приложении windows для форм, так и в приложении html5. Windows версия формы в порядке, но в версии просмотра HTML закладки и кнопки параметров отключены (но показаны). Я посмотрел на документацию, и есть только свойство для показа / скрытия, а не включения / выключения. Так почему же эти кнопки отключены?
Я использую версию 2018.2.2 с 27 апреля 2018 года.
Вот код для HTML средства просмотра (this.model
- это отчет JSON возвращено с сервера):
var options = new Stimulsoft.Viewer.StiViewerOptions();
options.height = "100%";
options.appearance.scrollbarsMode = true;
options.toolbar.viewMode = Stimulsoft.Viewer.StiWebViewMode.Continuous;
options.toolbar.showDesignButton = false;
options.toolbar.showBookmarksButton = true;
options.toolbar.printDestination = Stimulsoft.Viewer.StiPrintDestination.Direct;
options.appearance.htmlRenderMode = Stimulsoft.Report.Export.StiHtmlExportMode.Table;
// Create an instance of the viewer
this.viewer = new Stimulsoft.Viewer.StiViewer(options, "StiViewer", false);
this.viewer.renderHtml("viewer-content");
// Forcibly show process indicator
this.viewer!.showProcessIndicator();
// Timeout need for immediate display loading report indicator
setTimeout(() => {
// Create a new report instance
var report = new Stimulsoft.Report.StiReport();
// Load reports from JSON object
report.load(this.model);
// Assign the report to the viewer
this.viewer!.report = report;
}, 50);