Search This Blog

Saturday, February 4, 2023

Get a Hidden Item Value From Frontend in Oracle Apex

Get a Hidden Item Value From Frontend

Set Value inti Hidden Item From Frontend

1. Open an Apex page and Right click on the mouse then click on Inspect

2. Then click on Console.

3. Now put the javascript to get value or set value from the item. Exp:
apex.item("HiddinItemName").getValue();

apex.item("HiddinItemName").setValue();



you can see the hidden value.

No comments:

Post a Comment

Java to Oracle database Connection Using JDBC

Oracle database. // Java Program to Establish Connection  // in JDBC with Oracle Database // Importing database import java.sql.*; // Import...