ui-calendar icon indicating copy to clipboard operation
ui-calendar copied to clipboard

Add images to Calender

Open noob93 opened this issue 8 years ago • 3 comments

I need to add event images along with name and time to the calendar, how can I do it?

noob93 avatar Dec 15 '16 09:12 noob93

You will need to use the calendar eventRender or eventAfterAllRender callbacks.

this.cs.eventRender =function(event,element){ element.find('.fc-title').prepend('<i class="fa fa-address-book"></i> '); }

retek4 avatar Dec 16 '16 08:12 retek4

Cool, the article helped. I did something like this: (event.logo ? '<div >' + '<img src="'+htmlEscape(event.logo)+'">'+ '</div>' : '' ) +

noob93 avatar Dec 18 '16 19:12 noob93

Hello, please could you provide a more complete example for adding BIG pictures inside events, thank you

estellederrien avatar May 09 '17 13:05 estellederrien