| Issue 755: | HTML entities not showing correctly. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I've found when there are some HTML entities in the title, it shows them as their entity code. See attached.
Dec 13, 2010
Project Member
#1
althaus.it
Dec 26, 2010
can you tell me what your event object looks like? is it
{
title: "Jr & Sr High Family New Years Event Party",
start: "2010-12-12"
}
OR
{
title: "Jr & Sr High Family New Years Event Party",
start: "2010-12-12"
}
if it is the later, your problem is that you aren't able to put html entities into the title itself. an event's title doesn't support html, only the literal text. you need to include all characters, unescaped, into the literal string (you'll need to make sure the character encoding on your html page is UTF-8 if you want to support a wide range of characters).
Status:
Done
May 30, 2014
eventRender: function (event, element)
{
element.find('.fc-event-title').html(event.title);
}
Feb 8, 2015
Thank you so much. |
|
| ► Sign in to add a comment |