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!

Icon link in classic report

Sameh M. SewilamMay 23 2021 — edited May 23 2021

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

This post has been answered by fac586 on May 24 2021
Jump to Answer
Comments
Post Details
Added on May 23 2021
1 comment
1,025 views