Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is it possible to show Font Awesome country flag icons in Popup LOV display value?

ParthibanG21 hours ago

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,

Comments
Post Details
Added 21 hours ago
0 comments
3,108 views