Search This Blog

Friday, December 7, 2018

Dynamic Navigation Menu With Sub Menu Manually In Oracle Apex


Here is the SQL to do the Dynamic Navigation Menu With Sub Menu. The details watch the video.

SELECT LEVEL,
                  ENAME label,
                  'f?p=&OBNK.:' || '1' || ':' ||:APP_SESSION||':'||EMPNO target,
  SAL is_current,
 'fa-angle-double-right' image,                  
                  MGR 
             FROM EMP                 
       START WITH MGR IS NULL
       CONNECT BY PRIOR EMPNO = MGR
ORDER SIBLINGS BY EMPNO



1 comment:

  1. Hi, I have below requirement, Could you pls help me.. When user select a value from a list(From home page)... Menu items should dynamically change base on the value selected.

    ReplyDelete

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