I am using a Popup LOV where I show the country flag using a Font Awesome icon (for example: fa-in, fa-us, etc.).
Inside the Popup LOV list, the icon is showing correctly.
But after selecting a value, the display value (the return field) does not show the icon. It only shows the plain text dial code.
Is there any declarative setting in APEX that allows the selected display value of a Popup LOV to render icons or HTML?
Or is the display value always plain text only?
If there is a known workaround to show icons (Font Awesome) in the display value, please suggest.
Otherwise, should this be posted as an enhancement request on APEX Ideas?
Thank you.
SELECT
cny_dialing_code,
cny_code,
nvl(cny_name,cny_short_name)cny_name,
nvl(cny_name,cny_short_name) ||'('||cny_code||') '||cny_dialing_code display_value ,
'fa-flag-'||LOWER(cny_code)user_icon
FROM
cny_country_master
user icon is showing properly but same format not support in display value,
