Search This Blog

Friday, September 9, 2022

Interactive Report Upper Scroll Bar

1. Make an ID in the region Static ID 


2. Page CSS Inline 


#ID .t-fht-thead{

  overflow: auto !important;

}

No comments:

Post a Comment

Search String Inside Oracle Database Objects SQL

SELECT owner, name, type, line, text  FROM dba_source WHERE instr(UPPER(text), UPPER('string')) > 0;