Hi,
I want to disable the interactive grid delete options from Action menu with some condition.
I used the below code to disable 'Delete Row' from Row action.
apex.region("grid_id").widget().interactiveGrid("getActions").disable("row-delete");
Similarly, i want to disable 'Delete Rows' from Grid's Action -> selection ->Delete Row.
I try remove this one by ---> apex.region("grid_id").widget().interactiveGrid("getActions").remove("selection-delete");
please help me to disable this.
Thanks in Advance