Wednesday, October 13, 2021

Set/Convert an Item Value to Upper Case & Lower Case in Oracle Apex

Column Property 
--Custom Attributes property:

--UpperCase

style="text-transform: uppercase;" onKeyUp="this.value=this.value.toUpperCase();"


--LowerCase

style="text-transform: lowercase;" onKeyUp="this.value=this.value.toLowerCase();"

No comments:

Post a Comment

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...