laravel-fullcalendar icon indicating copy to clipboard operation
laravel-fullcalendar copied to clipboard

Html code inside tittle

Open cesarureno opened this issue 8 years ago • 1 comments
trafficstars

How can set html code inside text title. To display icons, bold, italic ..

cesarureno avatar Jun 12 '17 21:06 cesarureno

You can add HTML to the title of an event in the calendar like this:

function eventRender(event,element,view) { ... element.find('.fc-title').prepend('<i class="fa fa-exclamation-triangle"></i>');

... }

guillermobt avatar Jul 13 '17 12:07 guillermobt