control action Menu in interactive grid by JavaScript in oracle apex

Опубликовано: 23 Февраль 2026
на канале: Hossam assadallah
1,610
11

var actions = apex.region("ig").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");