Open nkostadinov opened 9 years ago
I agree with you. The resource.name used to be able to handle html content but now just renders html code as text.
As a workaround, you can add this when creating the calendar instance:
loading: function(isLoading) {
if (!isLoading)
{
//make column headers html
$(".fc-widget-header").each(function(i) {
$(this).html($.parseHTML($(this).text()));
});
}
}
Why is the resource.name escaped ? I think it would be a good idea to allow HTML content there or a callback rendering function.