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;
}