Top Horizontal Scrollbar in Interactive Report
Show a Horizontal Scrollbar on the Top of The Oracle Apex Interactive Report
Topic Introduction: In this tutorial, we will show how to show a horizontal scrollbar on the top of the oracle apex interactive report. By default, Oracle Apex shows a horizontal scrollbar at bottom of the interactive report. for this reason, we get a problem if the report has more rows and columns. If we want a horizontal scrollbar on top we need to customize this default report using CSS on inline Box.
1. Make an Interactive report on Oracle Apex.
2. Give a Static ID on Interactive Reports Region.
3. Write a CSS code on Page Property(Inline) using the Static ID.
Region Properties==>Advanced==> Static ID
DEPHORIZ_IR
Page Properties==> CSS==> Inline
#DEPHORIZ_IR .t-fht-thead{overflow: auto !important;}
No comments