Search This Blog

Wednesday, December 30, 2020

One Button Click Two Button Action In Oracle Apex

1. Function and Global Variable Declaration

function myfnc(){        

    apex.submit('exeprc');

    $('#OPN').trigger('click');

   }

2. Process >> Server side condition >> Type>> Request is contained in value >> exeprc

3. Button Redirect to URL : javascript:myfnc();

4. Second Button ID : OPN

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...