Posts by Pothi Arun Kannan

Dynamic Selection with Multiple APEX_ITEM Types in a Single Column and Real-Time Display in Another Column Using JavaScript in Classic Report

Introduction: – In Oracle APEX, a Classic Report offers a powerful way to display data in a tabular format. However, there are scenarios where dynamic interactions, such as selecting from…

Read More

Automatically disappear the success message based on a condition

Introduction: – In Oracle APEX applications, success messages play a vital role in providing feedback to users about the successful completion of actions or processes. However, leaving these messages displayed…

Read More

Client-Side Validation for APEX_ITEM Elements in Classic Report Using JavaScript

Introduction Client-Side Validation for APEX_ITEM Elements in Classic Report Using JavaScript” refers to the process of implementing validation checks directly in the browser for elements created using the APEX_ITEM package…

Read More

Displaying an Icon on Page Item Dynamically Based on User Input

Introduction The goal is to display an icon on a post text of page item, dynamically based on user input. This approach enhances user experience by providing immediate visual feedback…

Read More

Apply Dark & Light Mode In APEX Applications During Runtime

Overview Dark and light modes in APEX applications is a user interface design enhancement that allows users to choose between different color schemes to suit their preferences or environmental conditions.…

Read More

Password Feed Back Form In APEX

Overview In Oracle APEX, a “Password Feedback” form is often used to provide feedback to users when they are creating or updating their passwords. This form typically includes elements such as…

Read More

Customized Delete Icon and Delete all Functionality in Report in Outsystems

1. Introduction Allowing users to delete records through icons provides a simple and intuitive way to manage data within the application. The use of icons for common actions like delete can improve the user experience by making the application more user-friendly and visually appealing. Having a dedicated delete icon for each record in a Data Table or List allows users to delete specific records directly from the main data view without the need to open a separate page or form. At same time Users can want to delete all recorders simultaneously is also possible in Outsystem. This document will refer delete particular record in entity through icon and delete all record with one click. 2. Technology & Tools Used The following technology has been used to Delete single record as well as all records OUTSYSTEMS SERVER ACTIONS ENTITY 3. Server Actions In OutSystems, a Server Action is a fundamental building block used to define reusable logic on the server-side of an application. It is a collection of one or more actions (a sequence of steps) that can perform operations, such as data retrieval, data manipulation, business rules, and integration with external systems. Server Actions help keep the application’s logic organized, maintainable, and reusable across different screens and modules within the application 4. Entities In OutSystems, entities are a core concept that represents the data model of application. They define the structure of your application’s data and how that data is stored in the underlying database. Entities are similar to database tables in traditional database design but with additional capabilities provided by the OutSystems platform. 5. Delete Record With Icon Implementation (Steps With…

Read More

Editable Data Grid In Outsystems

1. Introduction This document will refer Outsystem data grid, is a user interface component that allows to display data in a structured way. The data grid is particularly useful when we…

Read More