Search This Blog

Saturday, October 3, 2020

Call to Mobile Number In Oracle Apex Iitem

1. Create a item like 

P1_MOBILENO

2.Copy-Pest the code into function and Global variable Declaration 

$( document ).ready(function() {

        $("#P1_MOBILENO").click(function(){

            var lnk='tel:+88'+this.value;

         //   alert(lnk);

            window.open(lnk, '_self');       

});

    

Restrict File Upload by File Type in Oracle Apex

If you want to restrict file upload by file type/extension/format you can follow the below steps.  Goto File Browser Item --> Advanced --...