In FullCalendar, is there a way to avoid opening a event insertion prompt when I click on a day in monthView? What I want to do is a changeview and go to the clicked date, which is working, but the prompt is still opening.
dayClick: function(date, jsEvent, view){ //This works fine, but open a prompt to add new event $("#calendar").fullCalendar('changeView','agendaWeek'); $("#calendar").fullCalendar('gotoDate',date); }
Thanks for any help.