Search This Blog

Wednesday, July 21, 2021

Interactive Report Column Width Change

 Interactive Report Column Width Change :

1. Set a static id for the report region. Example, Region Static RGNID 

2. Set a static id for the column you want to change width. Example, Column ID COLID

3. CSS by ID will be like this. Copy pest the code into Page Inline 

#RGNID td[headers=COLID]{min-width:300px}


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;