I am a skilled developer with over 8+ years of experience in Oracle APEX, Oracle Database, and APEX Themes and Plugins. As an Oracle ACE Associate, I focus on delivering innovative solutions that enhance user experiences and streamline business processes. My expertise includes database design and performance optimization, allowing me to tackle complex challenges effectively. I am passionate about leveraging technology to create impactful solutions and actively seek opportunities for growth and collaboration.
In this Short Video Vikas has explained, how can we customize the APEX login page template using APEX declarative templates options. https://youtu.be/s4T6_5okY5M
In this Short Video Vikas has explained, how can we setup the APEX application header image. Availble Options Text Image Image and Text both https://youtu.be/VqggHl6mJdw
How to add Auto Increment line number on Add Row button in interactive grid Oracle APEX. In Oracle APEX, Interactive Grids provide a powerful way to interact with and manipulate…
How to Get Device ID in Oracle APEX? Create a page with a page item and paste below Javascript in Function and Global Variable Declaration section as per screenshots. Copy CodeCopiedUse a…
1. apex.page.confirm Signature 1. This example shows a confirmation dialog with the text ‘Delete Department’. If the user chooses to proceed with the delete, the current page is submitted with…
How to upload multiple files in apex collection using Oracle APEX. Create a blank page where there will be a page item and a button as per screenshot. Create a…
How to Set and Get Item Value Using Javascript In Oracle APEX? 1. Get Item Value In Oracle APEX Using Javascript API. Copy CodeCopiedUse a different Browserapex.item( "P6_NAME" ).getValue(); $(…
Solution 1 : Copy CodeCopiedUse a different BrowserWITH t AS (SELECT sal, ename, DENSE_RANK () OVER (ORDER BY sal DESC) AS rnk FROM emp) SELECT sal, ename FROM t WHERE…
Disable Right Click and Copy Paste In Oracle APEX. If you want to disable right click and Copy paste from your whole application then use below code globle page. Create…