Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

APEX hide column on start Interactive Grid*

Alvaro Osorio-OracleApr 25 2024 — edited Apr 25 2024

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");

Comments
Post Details
Added on Apr 25 2024
3 comments
2,085 views