tangke888 发表于 2024-6-28 20:26:15

请问这两个按钮是如何隐藏?


wengMQ 发表于 2024-6-28 20:26:16

GrapeCity.ActiveReports.Designer.create('#designer-id1', {
fileView:{visible:false},
........

wengMQ 发表于 2024-6-29 09:07:40

designerOptions.fileView.visible = false;

tangke888 发表于 2024-6-29 20:35:06

代码不起作用,大佬 用这种格式 写的设计器,怎么隐藏

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
    }
},

tangke888 发表于 2024-6-29 22:09:42

   A、B 两种加进去,都不起效果

tangke888 发表于 2024-6-29 22:11:19

tangke888 发表于 2024-6-29 22:37:13

tangke888 发表于 2024-6-29 22:37:54

tangke888 发表于 2024-6-29 22:37


要这样

Felix.Li 发表于 2024-7-1 10:30:30

是的,新版本的会有一些改变,您可以参考这个地址:

https://developer.mescius.com/activereportsnet/docs/latest/online/web-designer-api.html

可以根据这个去隐藏这些按钮
页: [1]
查看完整版本: 请问这两个按钮是如何隐藏?