Step 1:
First, make a class name for the interactive grid.
Go to Page Properties >> Appearance >> CSS Classes >> CLASSNAME
Step 2:
Goto Page Properties >> CSS Inline >>
.CLASSNAME .a-GV-w-hdr{
overflow-x: auto !important;}
Muhammad Abdul Qaium is a Database Engineer/Oracle Apex Developer/BI Developer (in Atlanta, USA) who is an Oracle Certified Cloud Architect Professional, OCI Autonomous DB specialist as well as Oracle Business Intelligence Foundation Suite 11g Certified Implementation Specialist with extensive expertise in Database design , PL/SQL, Oracle Apex, Microsoft SSIS, ETL, Power BI, Qlik Sense, OBIEE. Contact: qaiuminfo@gmail.com
Step 1:
First, make a class name for the interactive grid.
Go to Page Properties >> Appearance >> CSS Classes >> CLASSNAME
Step 2:
Goto Page Properties >> CSS Inline >>
.CLASSNAME .a-GV-w-hdr{
overflow-x: auto !important;}
STEP-1 Creating Collection and Taking Excel File Value into Collection Table
Begin
IF APEX_COLLECTION.COLLECTION_EXISTS('COLLECTION_TABLE_NAME') THEN
APEX_COLLECTION.TRUNCATE_COLLECTION('COLLECTION_TABLE_NAME');
END IF;
IF NOT APEX_COLLECTION.COLLECTION_EXISTS('COLLECTION_TABLE_NAME') THEN
APEX_COLLECTION.CREATE_COLLECTION('COLLECTION_TABLE_NAME');
END IF;
Here we are freezing the first 5 columns from an interactive report in Oracle Apex.
Step-1. Copy the below code and pest into Page -> Execute when Page Loads
$('.a-IRR-table tr th:nth-child(2), .a-IRR-table tr td:nth-child(2)').css("left",$(".a-IRR-table tr th:nth-child(1)").width());
$('.a-IRR-table tr th:nth-child(3), .a-IRR-table tr td:nth-child(3)').css("left",$(".a-IRR-table tr th:nth-child(1)").width()+$(".a-IRR-table tr th:nth-child(2)").width());
$('.a-IRR-table tr th:nth-child(4), .a-IRR-table tr td:nth-child(4)').css("left",$(".a-IRR-table tr th:nth-child(1)").width()+$(".a-IRR-table tr th:nth-child(2)").width()+$(".a-IRR-table tr th:nth-child(3)").width());
$('.a-IRR-table tr th:nth-child(5), .a-IRR-table tr td:nth-child(5)').css("left",$(".a-IRR-table tr th:nth-child(1)").width()+$(".a-IRR-table tr th:nth-child(2)").width()+$(".a-IRR-table tr th:nth-child(4)").width());
Here are the steps to convert and get the character into a region by Oracle Apex. Step1. Create a page and Copy-Pest the below code into Pa...