Saturday, August 29, 2020

Remove Success Message After Specific Time

 From Page properties go to==>Function and Global Variable Declaration

setTimeout(function() {

  $("#t_Alert_Success").remove();

}, 5000);


Wednesday, August 12, 2020

Auto Refresh Report After a Specified Interval In Oracle Apex

 



1.First we need to define Region Static ID. Example: Region Static ID is ATTENDANCE.

2.Go to page properties===>Execute When Page Loads 

//This will Auto-Refresh after 1 minutes
setInterval("jQuery('#ATTENDANCE').trigger('apexrefresh');", 100000);

Image File store outside of Oracle Database and show image into Apex Application

Directory Create : grant execute on utl_file to HRMS; CREATE OR REPLACE DIRECTORY STOCK_DIRECTORY AS 'C:\Program Files (x86)\Apache Sof...