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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

In an APEX 5.0 Event Calendar, how do I show an image (png or gif) next to the text of the Event

CDInoonAug 6 2015 — edited Aug 7 2015

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.

Event Cal.PNG

How can I change the default "Display Column" attribute to allow for an image to be shown?

Thanks,

Ron

This post has been answered by fac586 on Aug 6 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 4 2015
Added on Aug 6 2015
4 comments
907 views