Search This Blog

Monday, March 4, 2024

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 --> Custom Attributes 

Then pest below code :

accept=".pdf,.csv,.xlsx"

Here it means only pdf , csv and xlsx file will be acceptable for upload. 


If you want to accept only pdf then you have to put like below code as the screenshot given:

accept=".pdf"


  Double-click on the image to view it on a big screen.


That's it. Now you can go and check. 

PDF to Text Covert by Oracle Apex

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...