代码不起作用,大佬 用这种格式 写的设计器,怎么隐藏
GrapeCity.ActiveReports.Designer.create('#designer-id1', { //控制生成标签
// document: { //打开已经设计的报表(默认在resource目录下的报表)
// id: "new.rdlx", //指定报表名称
// type: {
// platform: "rdlx", //区域报表这里要改成rpx
// type: "report"
// }
// },
preview: { //预览报表
openViewer: (options) => {
if (viewer) {
viewer.openReport(options.documentInfo.id);
return;
}
viewer = GrapeCity.ActiveReports.JSViewer.create({
element: '#' + options.element,
renderFormat: 'html',
reportService: {
url: 'api/reporting',
},
reportID: options.documentInfo.id,
documentLoaded: () => {
this.viewer._viewer.zoom = 2;
},
settings: {
zoomType: 'FitPage',
},
});
}
},
language: 'zh', //默认创建的语言:'en', 'ja', 'zh', 'zh-TW', 'es', 'ko', and 'pl'
fonts: [{ header: 'Questionable Choice' }, { label: "我是Arial", value: "Arial" }{label: "微软雅黑", value: "微软雅黑"}, 'Arial Black', 'Comic Sans MS', 'Courier New', 'Geneva', 'Georgia', 'Helvetica', 'Impact', 'Lucida Console', 'Meiryo', 'Meiryo UI', 'MingLiU', 'MingLiU-ExtB', 'MS Gothic', 'MS Mincho', 'MS PGothic', 'MS PMincho', 'MS Song', 'MS UI Gothic', 'NSimSun', 'Osaka', 'PMingLiU', 'PMingLiU-ExtB', 'SimSun', 'SimSun-ExtB', 'Song', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana', 'Yu Gothic'],//创建支持所有字体 可自定义名称 不控制默认全部
imageMimeTypes: ['image/bmp', 'image/jpeg', 'image/gif', 'image/png', 'image/svg+xml', 'image/x-emf', 'image/x-wmf'], //可支持的图片组件格式 不控制默认全部
units: 'cm', //页面单位 in/cm
lockLayout: false, //锁定布局 用户只有修改属性的权利,没有任何编辑布局的能力
storeUnsavedReport: false, //是否可以恢复上次未编辑完的报表 默认为true
appBar: { //顶部控制栏
visible: true,
saveButton: {
visible: true
},
saveAsButton: {
visible: true
},
insertTab: {
visible: true
}
}, |