Quan Nguyen
Quan Nguyen

Reputation: 560

Oracle Apex 5: Set max height of Interactive Report

I have an Interactive Report in Apex 5.0 with more than 20 columns. All the columns won't fit in the window so I have to use the horizontal scroll bar.

The problem is when I have more than 50 rows, the horizontal scroll bar gets displayed at the bottom of the page but outside the window, so I have to scroll down to see the horizontal scroll bar.

enter image description here

How can I set the 'max height' of an Interactive Report?

Upvotes: 2

Views: 10072

Answers (2)

brenners1302
brenners1302

Reputation: 1478

Hi you can set maximum report height in attributes

In your Interactive report region go to

Attributes>Heading>Set Fixed Header to Region > Set Maximum Report Height to 1000 px

Upvotes: 6

Luís P. A.
Luís P. A.

Reputation: 9739

Use an existing class ( .t-fht-wrapper ) and use this rules

CSS

.t-fht-wrapper{
max-height: 407px;
position: relative;
width: 100%;
}

Attention: There is a rule overflow in this class, remove it.

Upvotes: 1

Related Questions