Saturday, July 25, 2020

How to set the column width of Interactive reports in Oracle Apex


Region(Type Interactive Report) --> Report Attributes --> Column --> Static ID (Ex:scityid_display)


Page Inline:

th#scityid_display,
td[headers="scityid_display"]
{
   width: 150px;
}

th#scityname,
td[headers="scityname"]
{
   width: 150px;
}

th#scityid,
td[headers="scityid"]
{
   width: 150px;
}

th#scountryid,
td[headers="scountryid"]
{
   width: 150px;
}

No comments:

Post a Comment

Delete Row Button to all records of Interactive Report in Oracle Apex

 1. add 'Delete' Del column to Report Query 2. Set the Following Properties for the DEL Column Type: Link Heading: Delete Targ...