Параметры региона, Дополнительно, Статический идентификатор: emp
Параметры страницы, JavaScript, Выполнить при загрузке страницы
$(window).on("load", function() {
var actions = apex.region("emp").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");
});
Вы можете изменить «emp» на любое, что захотите, измените как статический идентификатор, так и JavaScript.Удалите строки, которые вы хотите сохранить.