#38 Oracle apex static height region

Hi all,

In this blog I'm gonna to explain how to set a static height for a region in Oracle APEX. When you give a region a static height, a scrollbar wil appear if the content in the region is longer than the static height.

Steps:
1. Create a static content region.
2. Add this code snippit: "<div style="overflow: auto; height: 430px;"> " to the header of the region.
3. Add this code snippit: "</div>" to the footer of the region.

This code creates a div around the region with the static height. The code in the footer will close the div.


See you soon!

Comments

Popular posts from this blog

#19 Clear cache in a PL/SQL process in Oracle APEX

#43 Add color to selected tab Oracle APEX