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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to hide help menu item under action toolbar on grid?

Chandler BingSep 4 2024 — edited Sep 4 2024

Hi,

I'm using apex 22.1, i want to hide help menu item under action toolbar on grid and i know we can achieved this through below code and apply that code on region initialization code but I'm looking ta code that apply on all pages in application and don't want to write code in each pages. Is there a way i can apply that code on global page dynamic action or something else?

function(config) {
config.initActions = function( actions ) {

         actions.remove("show-help-dialog"); // Hides Help  

}
return config;
}

This post has been answered by Karel Ekema on Sep 4 2024
Jump to Answer
Comments
Post Details
Added on Sep 4 2024
2 comments
59 views