Calling Designer from Viewer
The HTML5 Viewer component has the ability to call the report designer. The special Design button in the toolbar of the viewer (the button is disabled by default) should be used. To use this feature, you should set the showDesignButton property to true, and also to define the onDesignReport event handler.
viewer.html |
... var options = new Stimulsoft.Viewer.StiViewerOptions(); options.toolbar.showDesignButton = true; ... |
viewer.html |
... viewer.onDesignReport = function (args) { window.open("https://www.stimulsoft.com?reportName=" + args.report.reportName); } ... |
Information |
|