I am using APEX 5.0 with Theme 42 when I created an Event Calendar using a View. When I try to add an image to be shown with the event text, the image path is shown along with the event text instead of the image next to the text.
The image's appearance is conditional and added in my Select statement.
select YEAR,
FILE\_NBR,
Decode(COMMISH\_ATTEND, 'YES',' ', '\<img src=#WORKSPACE\_IMAGES#''ALPHA.PNG'' height=10px width=10px /> ' )||EVENT\_NAME || as EVENT\_NAME,
CASE
when CONFIRM\_DATETIME is null then 'apex-cal-yellow'
when CONFIRM\_DATETIME is not null then 'apex-cal-lime'
end as css_class,
ACTIVE
from EVENTS_V
The Event Calendar returns the escaped image tag.
How can I change the default "Display Column" attribute to allow for an image to be shown?
Thanks,
Ron