Javascript

Implementing Duplicate Validation in Oracle APEX Interactive Grids

Introduction Maintaining accurate data is vital in any application, particularly with databases. Duplicate entries can create confusion, hinder productivity, and compromise data integrity. This article presents two straightforward methods for…

Read More

Real Time Website Cloning-Create an Instagram replica with React JS

  Introduction  In the world of web development, the ability to clone popular websites has become a valuable skill. Cloning not only helps developers understand the architecture and features of…

Read More

Mastering Angular Framework-Create a Single Page Application (Website) Using Angular

  Introduction  In the rapidly evolving world of web development, creating highly performant and user-friendly applications is a top priority. Angular, a powerful and versatile framework maintained by Google, has…

Read More

Allow Only Number and Decimals Using Jquery in Oracle Apex

1.        Overview This document explains how to Allow only Numbers and Decimal Using Jquery in Oracle APEX. 2.        Technologies and Tools Used The following technologies has been used to achieve…

Read More

How To Create Scroll Indicator in Oracle APEX

1. Overview This document talks about how to create scrollbar indicator in Oracle APEX by using JavaScript in Oracle APEX. 2. Technologies and Tools Used The following technologies has been…

Read More

Display Time in Navigation Bar

1.        Overview This document explains how to create a Display Time in Navigation Bar using Oracle APEX. 2.        Technologies and Tools Used The following technologies has been used to achieve…

Read More

Highlight Data in different colors Using CSS

Use the below code in report query to highlight data with different colors based on conditions CASE             WHEN (TRUNC(SYSDATE) > date_down AND date_down IS NOT NULL)             AND date_out IS…

Read More

Check Data type using JavaScript

Use the below script to perform duplicate data validation along with numeric data type validation in Javascript. <!–duplicate checking for lpn –> <script> function check_lpn(pThis) { var j_item_id=pThis.id; var k_item_id=’#f02’+j_item_id.substr(3);…

Read More

Check duplicate data using Javascript

Use the below Javascript to identify duplicate data – In this sample code, when user enters order number in the tabular form, an error will be thrown if the order…

Read More