I have a full calendar that allows me to use the events in other elements outside the calendar, however, I would like the default events that come in the calendar such as prev, next, and today to be removed from the calendar so that I you can us...
I have a well-structured code of fullcalendar where I can do anything but one thing. When I click on event , I wanted it to erase and remove from the calendar. It deletes from the database but does not remove it from the calendar....
Good evening everyone, I'm wondering if there is a way to get the month and current year of FullCalendar , when we click on go back or forward.
I could not figure out which event fires when you click the forward and reverse dates button...
I need to retrieve all events from my calendar and then retrieve all the days that have an event.
I've already tried
$("#calendar").fullcalendar("getSource");
but iss does not work
Good afternoon, I'm creating a simple calendar using the FullCalendar plugin, I'm almost ready, but now I need to click on the desired event to display the information of the event and the option to update the image below you can see how it is c...
I would like to open a modal when I click on a calendar day.
script:
<script>
$(document).ready(function ()
{
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',...
I'm using this:
eventClick: function (calEvent, jsEvent, view) {
$('#calendar').fullCalendar('removeEvents', event.id);
},
My database has: id , title , start , end , username I tried to change "event.i...
I need to change the minTime property of the view agendaDay of FullCalendar dynamically as the user changes the date.
I've already tried the following:
dayRender: function(event, element, view) {
$('#calendar')....
I'm using this:
eventClick: function (calEvent, jsEvent, view) {
$('#calendar').fullCalendar('removeEvents', event.id);
},
My database has: id , title , start , end , username I tried to change "event.i...