Home > Blockchain >  Link with date in fullcallendar
Link with date in fullcallendar

Time:06-08

Good morning, I am using full calendar in listview, with daily recurring events, the problem is that when I press the event, I need to somehow tell me what day it is in the link to be able to show the history of that day

CodePudding user response:

This will give you the dates (start and end) of the clicked event.

eventClick: function(info) {
    console.log(info.event.start);
    console.log(info.event.end);
}
  • Related