每当我单击列标题时,我都想从交互式网格中删除冻结和隐藏按钮。
问题是,我之前在使用 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 只允许禁用排序/控制中断/聚合。