页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
linenumberstrue
function main(spreadsheetReport) {
    spreadsheetReport._initExportMenu_new = spreadsheetReport.initExportMenu;
    spreadsheetReport.initExportMenu = function() {
        spreadsheetReport._initExportMenu_new();
        this.exportMenu.removeItem("CSV"); //屏蔽CSV
        this.exportMenu.removeItem("HTML"); //屏蔽HTML
        this.exportMenu.removeItem("PNG"); //屏蔽PNG
        this.exportMenu.removeItem("PDF"); //屏蔽PDF
        this.exportMenu.removeItem("WORD"); //屏蔽WORD
        //this.exportMenu.removeItem("EXCEL2007");  //屏蔽EXCEL
    }
    spreadsheetReport.old_doExport = spreadsheetReport.doExport;
    spreadsheetReport.doExport = function() {
        /*this.old_doExport();
        this.exportMenu.panel.style.height = "";*/
        
        //上面是高度自适应,下面是点击直接调用导出excel
        this.doExportMenuCloseUp("EXCEL2007");
		//若是清单报表:this.doExportMenuCloseUp("LIST_EXCEL");
    }
}