I have noticed when I am trying to implement the dayClick: and the select functions there seems to be a collision somewhere.
Here is some narrowed down code.
// WHEN YOU SELECT MULTIPLE DAYS
select: function(start, end, allDay) {
var title = prompt('New Select Date:');
if(title) {
calendar.fullCalendar('renderEvent',
{
title: title,
start: start,
end: end,
allDay: allDay
}, true);
calendar.fullCalendar('unselect');
alert("end of select");
}
},
// ADDING A NEW EVENT
dayClick: function (date) {
alert("Day ("+ date +") was clicked");
},
So the issue comes when I "click" on a day, it alerts me which is fine, but then it brings up the prompt for SELECT functionality.
So it runs an ALERT and then a PROMPT window. I am not sure why it's doing this, I haven't been able to narrow down the reasoning, perhaps someone else has had a similar issue?
Please let me know if you have run into a fix or this same issue. Cheers.