admin管理员组文章数量:1336660
I have followed this link to hide most of the options from the interactive grid.
Remove Oracle Apex Interactive Grid row actions
but I am not able to hide "Fill", "Clear" and "Copy Down".
I am using the commands as below :
actions.remove("selection-fill");
actions.remove("selection-clear");
actions.remove("selection-copy-down");
I am on APEX version, 24.1.5. Is there any other way to hide these options in this version?
Regards, Abha
I have followed this link to hide most of the options from the interactive grid.
Remove Oracle Apex Interactive Grid row actions
but I am not able to hide "Fill", "Clear" and "Copy Down".
I am using the commands as below :
actions.remove("selection-fill");
actions.remove("selection-clear");
actions.remove("selection-copy-down");
I am on APEX version, 24.1.5. Is there any other way to hide these options in this version?
Regards, Abha
Share asked Nov 28, 2024 at 10:37 AbhaAbha 3473 gold badges12 silver badges31 bronze badges1 Answer
Reset to default 0Those options are evaluated when the selection changes. That post you are referring to will only fire on page load. So as soon as the selection changes, the actions will re-appear. The solution is to use a dynamic action. Example on an IG with static id emp
. Only the attributes that need change are listed below, leave everything else default.
Dynamic Action:
- Event: Selection Change[Interactive Grid]
- Region: your interactive grid region
Action:
- Action: Execute Javascript Code
- Code:
var actions = apex.region("emp").widget().interactiveGrid("getActions");
actions.remove("selection-fill");
actions.remove("selection-clear");
actions.remove("selection-copy-down");
本文标签:
版权声明:本文标题:oracle apex - How to hide option "Fill", "Clear", "Copy Down" from Interac 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742267129a2443616.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论