Hi,
I am using the Oracle Apex 23.2 version.
I am using a dynamic side navigation menu using the database query. The problem I am facing is that the menu is not showing the icons against the menu option. The default icon (fa-file-o) is just flickering and disappearing while loading pages. I have set 'Collapse Mode' as 'Icon' in the Application User Interface. The query is as given below.
select
LEVEL "level",
M.MENU_ID,
M.MENU_NAME "label",
decode( connect_by_isleaf, 0, '','f?p=&APP_ID.:'
|| TO_CHAR(PAGE_NO)
|| ':&SESSION.:::::'
) target,
'YES' as is_current,
'fa-home' image,
M.MENU_ACTIVE
from
HR_MENU_MASTER M
start with
M.PARENT_ID = 0
connect by
prior M.MENU_ID = M.PARENT_ID
order siblings by M.MENU_ORDER asc ;
Thanks for the help.
Biju Raphael