Mark Stewart
Mark Stewart

Reputation: 2098

Oracle Apex: Hide Interactive Report Control Panel

I have an Interactive Report with multiple saved reports. For the Primary Report, I want to hide the information bar that indicates highlight filter "Errors Found" is active, as it just takes up space, and the users would not need to disable it:

Sample IR Report

I used the debugger to get the div class and ID, but I don't know where I can put the CSS to set that ID to hidden; here is the div and ID, and the display: none code I inserted via the debugger to hide that area:

Sample CSS

So I want to add to that division/id

style="display: none;"

I don't know how/where to put that code in my page definition to hide that division/ID.

Upvotes: 1

Views: 2492

Answers (1)

romeuBraga
romeuBraga

Reputation: 2165

Try to use the class in that div to do this, like

.a-MediaBlock.a-IRR-controlsContainer.a-Collapsible.is-collapsed {
display: none !important;
}

I think ID can change in a update of the application, but you can use id too:

div#R91.._control_panel {
display: none !important;
}

put this code in page properties --> css inline. enter image description here

Upvotes: 3

Related Questions