I would like to remove the Single Row View action on the "Row Actions" button on the Interactive Grid :
Also, I would like to remove these following actions on the row actions menu aswell, because these have no translations available based on the translation documentation for the 21.1 version of Oracle Apex :
I came across some existing post about this subject, but I don't know why it's not working for me, I tried to add a static ID to the IG and put this JavaScript function on Page Load (credit to this post) :
$(window).on("load", function() {
var actions = apex.region("archiveList").widget().interactiveGrid("getActions");
actions.remove("selection-add-row");
actions.remove("selection-duplicate");
actions.remove("selection-fill");
actions.remove("selection-clear");
actions.remove("selection-delete");
actions.remove("selection-copy-down");
actions.remove("selection-copy");
actions.remove("selection-refresh");
actions.remove("selection-revert");
actions.remove("single-row-view");
actions.remove("row-add-row");
actions.remove("row-duplicate");
actions.remove("row-delete");
actions.remove("row-refresh");
actions.remove("row-revert");
});
To summarize everything, I want to remove these following actions :
- Single Row View
- Copy to Clipboard
- Copy Down
- Fill
- Clear
Thank you in advance,