Posts

Showing posts from November, 2020

How to change the href value of "a" tag dynamic in Oracle APEX

Image
   JavaScript is a high-level, interpreted, dynamically-typed and client-side scripting language. HTML is used to create static web pages. JavaScript enables interactive web pages when used along with HTML and CSS. Document Object Manipulation (DOM) is a programming interface for HTML and XML documents. DOM acts as an interface between JavaScript and HTML combined with CSS. The DOM represents the document as nodes and objects i.e. the browser turns every HTML tag into a JavaScript object that we can manipulate. DOM is an object-oriented representation of the web page, that can be modified with a scripting language such as JavaScript. To manipulate objects inside the document we need to select it and then manipulate. Selecting an element can be done in five ways: document.querySelector() Method:  It returns the first element that matches the query. document.querySelectorAll() Method:  It returns all the elements that matches the query. document.getElementById() Method...

Oracle APEX 20.2 / ORDS 20.3 / Tomcat 9.0 Installation

Image
 (Oracle APEX 20.2  +ORDS 20.3 + Oracle 12c DB 12.2.0.1  + Tomcat 9.0) APEX 20.2 Desupported features include:      Desupported Web Listeners:              Legacy Web Listener – Oracle HTTP Server            Embedded PL/SQL Gateway      Desupported Browser:            Microsoft Internet Explorer 11 is desupported. a) Oracle APEX 20.2 Installations   1) Download the Oracle APEX 20.2  https://www.oracle.com/tools/downloads/apex-downloads.html 2) Unzip Folder in desired path            i.e  T:\App\Apex  3) Go to Apex Path  in command prompt and execute the SQLPLUS  Command          T:\app\apex> Sqlplus 4)  Please make sure you are connecting your desire container before start installation  CONN sys/Manager1/CISPDB AS SYSDBA ...