Divers
Divers

Reputation: 9569

How can I get an image or link to show up in an Oracle APEX CLASSIC Report?

I want to do something like this:

select 
a,
'<img src="/i/image.png" width="24px"/>' b
from myTable;

but html is showing like text.

How to solve this?

Upvotes: 1

Views: 5298

Answers (2)

Captain Stubing
Captain Stubing

Reputation: 21

Couldn't find the 'Display As' column property in more recent APEX-version. What ended up working with me was setting the 'Escape special characters' to NO in the Security section of the column attributes. Column attributes > Security

Upvotes: 1

Tony Andrews
Tony Andrews

Reputation: 132580

Edit the column attributes and set the Display As property to "Standard Report Column" and then the HTML will not be escaped.

enter image description here

Upvotes: 3

Related Questions