Reputation: 9569
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
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
Reputation: 132580
Edit the column attributes and set the Display As property to "Standard Report Column" and then the HTML will not be escaped.
Upvotes: 3