How to Get the Current User in Oracle Apex?

Oracle Apex get current user example.

In Oracle Apex, the current user refers to the person who is currently logged into the application. This information is required for many reasons, such as personalizing the user experience, implementing security measures, and tracking user activities. In this guide, we will explore different methods to get the current user in Oracle Apex and provide ... Read more

How to Hide a Region in Oracle Apex?

On-change dynamic action setting.

In this tutorial, you will learn how to hide a region in Oracle Apex. What is a Region Oracle Apex? In Oracle Application Express (APEX), a region is a fundamental building block used to organize and display content within a web page. It serves as a container for various types of user interface components, such ... Read more

How to Delete Application in Oracle Apex?

Deleting an application in Oracle Apex.

In this tutorial, you will learn how to delete an application in Oracle Apex. What is an Application in Oracle Apex? An application in Oracle Application Express (Oracle APEX) is a comprehensive software solution that enables users to design, develop, and deploy web-based applications quickly and efficiently. Oracle APEX is a low-code development platform that ... Read more

How to Delete a Page in Oracle Apex?

Oracle Apex: Deleting a page.

In this tutorial, you will learn how to delete a page in Oracle Apex. Also, we will give an example to delete multiple pages from an application in Oracle Apex. What is a Page in Oracle Apex? In Oracle Application Express (APEX), a "page" is a fundamental building block that represents a distinct user interface ... Read more

Oracle Apex: Refresh Current Region Using JavaScript

In this tutorial, we will explore how to refresh the current region in your Oracle Application Express (APEX) application using JavaScript. To achieve this, we will make use of the apex.region.findClosest JavaScript function provided by Oracle APEX. This function allows us to locate the region containing a specific DOM element and subsequently trigger a refresh ... Read more

Display Tooltips on Mouseover in Oracle Apex

In this tutorial, I will show you how you can display tooltips on page items, buttons, etc on mouseover in Oracle Apex. I am using the Tippy.js JavaScript library to show tooltips in Oracle Apex. This library has good customization features and is easy to use. Display Tooltips in Oracle Apex Example To use the ... Read more

How to Use Checkbox Group Item in Oracle Apex?

In Oracle Apex, you can use a checkbox group item to display multiple value checkboxes. The advantage of using a checkbox group is that you can get all the checkbox values in a single string, each value separated by a colon. To create the checkbox group item in Oracle Apex follow these steps: Creating Checkbox ... Read more