Add Scrollbar to Interactive Report in Oracle APEX
APEX Reports have a horizontal scrollbars positioned at the bottom of reports. This can prove as a difficulty to users if the report has too many rows.
Solution - Add Scrollbar at the top of Interactive Report using CSS
Follow the link for detailed video - https://youtu.be/M_iz6wzQ0Xg
CSS :
#STATIC_ID .t-fht-thead {
overflow: auto !important;
}
The CSS works as below -
t-fht-thead - Header of the report
overflow: auto - Property
#STATIC_ID - static id of the IR
Comments
Post a Comment