Enable Edit Button In Interactive Grid In Page Load

Sometimes end user gets confused while editing a record in Interactive Grid(IG Report) in Oracle APEX Applications.

So, we can enable the Edit button by default while loading the page that is having IG Report.

Step 1

Assing a Static ID to the IG Report

Example : gridItems

See below image:

Static ID in IG Report region.

 

Step 2
  • Create Dynamic Action On Page load
  • Add new action “Execute JavaScript Code”
  • Add below code

apex.region(“gridItems”).widget().interactiveGrid(“getActions”).set(“edit”,true);

 

DA
  • Add below code

apex.region(“gridItems”).widget().interactiveGrid(“getActions”).set(“edit”,true);

Action

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *