一月下旬新内容速递丨地理智能、函数实战与新春启航

年末将至,智慧不停!一月下旬更新聚焦地理智能、函数实战、二次开发与新春趣味活动,助你在数据探索中持续突破!

一、图表应用精选

【地图】GIS地图:告别平面报表,激活你的业务“地理智能”》→学习GIS地图应用,实现业务数据与地理信息的深度融合。
【散点图】商业世界的“关系侦探”》→掌握散点图在商业分析中的实战应用,洞察变量间的隐藏关系。

二、二次开发视频更新

Excel导入模板扩展数据处理类》→如何让导入的“1”和“0”自动变成“是”和“否”

三、函数应用进阶

【函数课堂】Fixed :数据计算中的“定海神针”》→系统讲解Fixed函数的使用场景与技巧,助你掌握数据计算的稳定性关键。

四、插件更新

离线导出功能集成阿里云OSS》→新增离线导出至阿里云OSS功能,提升数据导出安全性与存储灵活性。

五、新年活动进行中

新年第②弹|新春知识擂台:智慧解码,喜迎新年!》→新春特别活动,智慧解码挑战,喜迎新年好运!

六、任务持续上线

【图表应用】GIS地图诊断市场盈亏,制定精准策略》→掌握GIS地图分析技能,精准诊断市场表现,助力策略制定。
【函数】Fixed函数实战任务》→深入Fixed函数实战应用,提升数据计算稳定性和精准度。
【图表应用】散点图:你的“广告效果侦查局”已上线!》→运用散点图分析广告效果,成为数据驱动的“侦查高手”。
【新年活动】智慧解码擂台:挑战你的数据脑力!》→参与数据解码挑战,激活你的逻辑思维与分析能力。


地理智能赋能业务,函数实战夯实基础,新春活动智趣相融——一月下旬,与数据共赴新年新征程!

麦粉社区
>
帖子详情

组件明细表导出功能用宏实现关闭

数据准备 发表于 2024-12-12 13:14
发表于 2024-12-12 13:14:40

使用明细表有导出功能,如何用宏控制导出功能的隐藏或开启

发表于 2024-12-12 13:14:41
需要隐藏的地方写 =‘none’ ,我这个是正好不隐藏导出,其他都隐藏。
你反过来就行。
不需要隐藏的菜单可以不写代码,或者写=‘’;
宏代码左下角的禁用选框,可以启用或禁用。
34211675a78aef00e0.png
function main(simpleReport, simpleReportContext) {
    //debugger;
    //"none"表示为隐藏,""表示为显示
    setTimeout(function() {
        simpleReport.btnBackward.parentNode.style.display = "none"; //后退
        simpleReport.btnForward.parentNode.style.display = "none"; //前进
        simpleReport.btnRefresh.parentNode.style.display = ""; //刷新
        simpleReport.btnSave.parentNode.style.display = "none"; //保存
        simpleReport.btnSaveAs.parentNode.style.display = "none"; //另存为
        simpleReport.btnMyFavorite.parentNode.style.display = "none"; //隐藏收藏夹
        simpleReport.btnChart.parentNode.style.display = "none"; //图形
        simpleReport.btnView.parentNode.style.display = "none"; //视图
        simpleReport.btnSelectField.parentNode.style.display = "none"; //添加/删除字段
        simpleReport.btnQueryViewSetting.parentNode.style.display = "none"; //报表设置
        simpleReport.btnReportParam.parentNode.style.display = "none"; //参数设置
        simpleReport.btnExport.parentNode.style.display = ""; //导出
        simpleReport.btnPrint.parentNode.style.display = "none"; //打印

        if (simpleReport.btnTimeConsuming) {
            simpleReport.btnTimeConsuming.parentNode.style.display = "none"; //耗时分析
        }
        if (simpleReport.elem_btnSetUserParam) {
            simpleReport.elem_btnSetUserParam.parentNode.style.display = "none"; //个人参数
        }
        simpleReport.btnEditDataset.parentNode.style.display = "none"; //定位数据集
        if (simpleReport.elemCreateInsightInQuery) {
            simpleReport.elemCreateInsightInQuery.parentNode.style.display = "none"; //透视分析
        }
    }, 100)
}

回复

使用道具 举报

发表于 2024-12-12 15:57:13
回复

使用道具 举报

发表于 2025-4-10 15:12:47
学习了
回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies
您需要登录后才可以回帖 登录 | 立即注册

8回帖数 0关注人数 2230浏览人数
最后回复于:2025-4-10 15:12

社区

指南

快速回复 返回顶部 返回列表