Change Interactive Grid Menu icon in Oracle APEX!!

Satwik
Oct 30, 2020

The latest interactive grid of oracle APEX comes with so many different possibilities to play with.

Thanks to the Oracle Application Express developer team we can use this “Fabulous” feature. For someone who does not know what is Interactive Grid here is the link to explore more!

Here’s how we are going to change the Row menu Icon in Interactive Grid.

Default Menu ICON from APEX
  • Add a Static ID to the Interactive grid region.
  • Place the Below Javascript snippet under Page > Javascript => Execute when Page Loads.
  • $(“#emp .icon-ig-actions”)
    .removeClass()
    .addClass(‘fa fa-ellipsis-v gvMenuEllipsis’);
  • Replace #emp with the Static ID name of your own.

*It can be replaced with any font awesome icon.

After changing the Menu ICON with font awesome eclipses

*Checkout John Snyders's excellent postings “How to hack Apex Interactive Grids”. Part One & Part Two

--

--