页面树结构
转至元数据结尾
转至元数据起始

正在查看旧版本。 查看 当前版本.

与当前比较 查看页面历史

« 前一个 版本 2 下一个 »

示例说明

在组合分析的导出按钮中,提供多个导出选项,如HTML、EXCEL、CVS等。有时候希望只保留某一些选项,可通过宏代码控制实现。

版本及客户端说明

1.smartbi版本:最新版本

2.客户端:PC

3.浏览器:IE11、谷歌浏览器(Chrome)、火狐浏览器(Firefox)

设置方法

1.创建业务主题 

2.创建透视分析报表

3.进入宏界面

在浏览器的资源定制节点下,选中新建的透视分析,右键选择 编辑宏 进入报表宏界面。

 

4.创建客户端宏

在报表宏界面新建客户端模块。在弹出的新建模块对话框中,选择对象为simpleReport、事件为onRender、并把下面宏代码复制到代码编辑区域。

宏类型

类型

对象

事件

ClientSide

simpleReport

onRender

 

宏代码

 

function main(simpleReport, simpleReportContext) {
 
    simpleReport._initExportMenu_new = simpleReport.initExportMenu;
    simpleReport.initExportMenu = function() {debugger;
      //  debugger;
        simpleReport._initExportMenu_new();
        this.exportMenu.removeItem("TXT"); //屏蔽CSV
        this.exportMenu.removeItem("CSV"); //屏蔽CSV
        this.exportMenu.removeItem("MHT"); //屏蔽HTML
        this.exportMenu.removeItem("PNG"); //屏蔽PNG
        this.exportMenu.removeItem("PDF"); //屏蔽PDF
        this.exportMenu.removeItem("WORD"); //屏蔽WORD
        var t = this;
        setTimeout(function() { // 异步插入到最后的也要异步删除
            t.exportMenu.removeItem('DATAPACKAGE');
        }, 0);
    } 
    //debugger;
    simpleReport.old_doExport = simpleReport.doExport;
    simpleReport.doExport = function(ev) {debugger;
        this.old_doExport(ev);
        debugger;
        this.exportMenu.panel.style.height = "";
        //上面是高度自适应
    }
}

 

 

  • 无标签