Reputation: 61
I want to hide Interactive Report Setting/Filters Area.
I found to hide Interactive Grid's Report setting area in Interactive Grid Cookbook
function(config) {
config.reportSettingsArea = false;
// may want to disable the highlights feature. Comment out this code to make initial highlight settings
apex.util.getNestedObject(config, "views.grid.features").highlight = false;
return config;}
Upvotes: 0
Views: 6806
Reputation: 1
To remove completely the settings regions of an interactive Grid you can do
past the below code in PAGE>>CSS>>inline .a-IG-controlsContainer { display:none; }
Upvotes: 0
Reputation: 189
To remove completely the settings regions of an interactive report you can do as follows:
Go to CSS section and then paste the following code in the attribute "In line" (I'm assuming your static id is "IR_ORDERS":
#IR_ORDERS_control_panel{
display:none;
}
Upvotes: 1
Reputation: 1478
(if you are using ver 18.1 up)
GO to Attributes then under Search Bar find Finder Drop down and set to No.
Upvotes: 1