For specific attributes of an event to be displayed in the \'fullCalendar\' matrix I would like to add icons to show them, for \'completed\' an (i) button, or an URL symbol
eventRender: function (calEvent, element) {
element.find("div.fc-content").prepend("
");
}
-- listener event click
eventClick: function (calEvent, jsEvent, view) {
if (jsEvent.target.href != undefined) {
//click on a icon in event
"http://localhost:64686/imagens/IconExperience/16x16/whatsapp-icon.png"
etc...
}
alert(jsEvent.target.href);
}