Calendar (APEX 24.1.0): Is it possible to put line breaks in the Event Display Column? (Solved)
I'm using the Calendar region type (based on Full Calendar) and would like to spread the event display column over several lines. I've tried the usual suspects such as the HTML break tag
and /n in the string and u'\000D\000A' in the source query, but without any success.
So, instead of seeing : line 1 line 2 line 3
I would like to see :
line 1
line 2
line 3
My APEX Version is 24.1.0.
UPDATE! I don't know why I didn't figure it out sooner. It suffices to set the ESCAPE SPECIAL CHARACTERS to OFF at the region level and use HTML breaks, just like I usually do for other items and regions. As I'm new to the Calendar, I just didn't think about it being so simple. :)