第四步:修改预览jsview;
designerOptions.openViewer = function (options) {
if (viewer) {
viewer.openReport(options.reportInfo.id);
return;
}
viewer = GrapeCity.ActiveReports.JSViewer.create({
locale: options.locale,
element: '#' + options.element,
reportService: {
url: "http://localhost:58721/api/" +'reporting',
},
reportID: options.reportInfo.id,
settings: {
zoomType: 'FitPage'
},
});
}; |