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.
- 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.