删除冻结按钮 Oracle APEX

Remove Freeze Button Oracle APEX

每当我单击列 header。

我想从我的交互式网格中删除冻结和隐藏按钮

问题是,我之前用Apex 5.1的时候已经有解决办法了,现在升级到18.2版本好像不行了。这是我之前使用的代码:

$("#grid_id").on("gridactivatecolumnheader", function(e){
    setTimeout(function() {
        $("#grid_id").find("[data-option='freeze']").remove();
        $("#grid_id").find("[data-option='hide']").remove();
    },
               1);
}
            );

我已经尝试了我在网上找到的其他版本,遗憾的是什么也没做,例如:

function(config) {
    config.features = config.features || {};
    config.features.freeze = false;
    config.features.hide= false;
    return config;
}

这些功能在最新版本中是否已弃用?还有其他方法可以隐藏这些功能吗? Oracle Developer 只允许禁用 Sort/Control Break/Aggregate.

$("#id").on("gridactivatecolumnheader", function(e){
    setTimeout(function() {
        $("#id_ig_column_header_menu").find("[data-option='freeze']").remove();
        $("#id_ig_column_header_menu").find("[data-option='hide']").remove();
    },1);
});

它们改变了选项在 HTML 中的呈现方式,上面的代码有效。您需要在“#id_ig_column_header_menu”中找到该选项,而不仅仅是“#id”。

这解决了您今天的问题,明天他们可以再次更改。

转到列属性 > 高级 > javaScript 初始化代码 >

function(config) { 
    config.defaultGridColumnOptions = {
        noHeaderActivate: true 
    };  
    return config; 
}