2
votes

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?

2
Set the max-height in a a wrapper/container outside table. Ex. <div class="wrapper"><table></table></div>Luís P. A.
@LuisP.A.: Please help me to do this on my page apex.oracle.com/pls/apex/f?p=40664:2:6975876473448::::: workspace: quann username: quann169@yahoo.com.vn pass: 1qazxsw2Quan Nguyen
I make the solution aboveLuís P. A.

2 Answers

6
votes

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

1
votes

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.