Reputation: 560
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.
How can I set the 'max height' of an Interactive Report?
Upvotes: 2
Views: 10072
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
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