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