I wanted to hide columns in the start of the IR
I created a DA that executes JS
The columns are hidden yes, but in the row actions the column is show like visible.
Is there any other way around to hide columns at the start of the IR, and if the user wants he can show those columns.
var gridView = apex.region("Opportunities").call("getViews").grid;
console.log(gridView)
/// Show Hide COLUMN
gridView.view$.grid("hideColumn", "MODIFIED_ON");
gridView.view$.grid("hideColumn", "MODIFIED_BY");
