How to use the Classic Report Print Button in Oracle Apex

classic report print, Oracle Apex, jaberit, jaberitltd, How to use the classic report print button in Oracle Apex
How to use the Classic Report Print Button in Oracle Apex
How to use the Classic Report Print Button in Oracle Apex How to use the Classic Report Print Button in Oracle Apex ; 1. Create a Classic Report ; 2. Create a Button, Name-Print ; 3. Go-to Button Properties -> Icon- fa-print ; 4. Create dynamic action on the Print button -> Name- Print Advanced -> Event Scope - Static 1. Action -> Execute JavaScript Code -> Paste the following code - var navCollapsed = 0; if ($("body").hasClass("js-navExpanded")) { $("#t_Button_navControl").click(); navCollapsed = 1; }; setTimeout(3000); //////// Hide //////// //Hide Navigation Bar List $("#t_Header").hide(); //Hide Navigation Menu $("#t_Body_nav").hide(); //Hide Breadcrumb $("#t_Body_title").hide(); //Hide Content Offset $("#t_Body_content_offset").hide(); //Hide Report Column Edit Link $(".apex-edit-page").hide(); //Hide Report Download Links $(".t-Report-links").hide(); //Hi…

Post a Comment