Hello All,
I have the following environment :
OS : Windows Server 2012 64
Database : 11g R2 Standard one edition
Apex : 5.1.4
ORDS : 17
Tomcat : 9
Template: Classic Report
i have the following sql query
select
DECODE (order_status_id,
1, '<img width=20 height=20 src="#APP_IMAGES#delete.ico">',
2, '<img width=20 height=20 src="#APP_IMAGES#delete.ico">', null
) delete_icon, order_id, order_date, customer_id
from orders;
and i set Escape special characters to "No" for delete_icon column
the problem when the type of delete_icon column is plain text the icon is displayed. but when i convert the type to link and set link text to #DELETE_ICON#, the image icon not displayed.
thanks for your advice