Skip to content Skip to sidebar Skip to footer

How To Programmatically Update The Rendering Of An Event In Fullcalendar

I'm working on an app that already renders a calender using fullcalendar, whenever the page refreshes the time slots are always rendered with the correct colors using the event ren

Solution 1:

it turns out that i simply had to update the property of the calendarEvent ie

calEvent.isActive = true; calEvent.status = 0; // ie in progress

then call update event:

$('#calendar').fullCalendar('updateEvent',calEvent);

that took care of all the rendering for me

Post a Comment for "How To Programmatically Update The Rendering Of An Event In Fullcalendar"