My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 2214: HTML in Title. Working example.
1 person starred this issue and may be notified of changes. Back to list
Status:  Done
Owner:  ----
Closed:  Jul 2014


Sign in to add a comment
 
Reported by Michael....@gmail.com, Jul 23, 2014
I want to use HTML in the title, using the eventRender:

 eventRender: function (event, element) {
                element.find('.fc-event-title').html(event.title);
            }

and title is: 

  title: '<b>This</b> is test title.',

but HTML is not working. What do I do wrong? 
Jul 23, 2014
#1 Michael....@gmail.com
This modification: 

eventRender: function(event, element) {                                          
	element.find('span.fc-event-title').html(element.find('span.fc-event-title').text());					  
}

is not result too.
Jul 27, 2014
Project Member #2 adamrs...@gmail.com
if you are using v2.1 beta, the classname has changed to simply ".fc-title"

beyond that, i dont know. you'll have to use the javascript debugger.
Status: Done
Sign in to add a comment

Powered by Google Project Hosting