Azam Sajid
Azam Sajid

Reputation: 61

How to Hide Interactive Report Setting Area in Oracle Apex

enter image description hereI 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

Answers (3)

Anas Hnaif
Anas Hnaif

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

Higor Pereira
Higor Pereira

Reputation: 189

To remove completely the settings regions of an interactive report you can do as follows:

  1. Give your Interactive Report region an static id (under your regions attributes scroll over "Advanced" and then "static id");
  2. Under your page properties (first tab on the left on page designer mode) :

enter image description here

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

brenners1302
brenners1302

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

Related Questions