Questions about the 4.x branch of FullCalendar. Always use the "fullCalendar" tag in conjunction with this tag.
Questions tagged [fullcalendar-4]
546 questions
2
votes
1 answer
Add custom columns to Fullcalendar Listview
I'm using Fullcalendar V4, and i'm trying to add a new column after the title on Listview with the EventRender function.
I tried with some code using JQuery:
eventRender: function(info) {
info.el.querySelector('.fc-list-item-title').append(…

Francesco
- 21
- 1
- 2
2
votes
0 answers
FullCalendar Scheduler split the day into Morning (am) and Afternoon (pm)
Using fullcalendar scheduler JQuery plugin I would like to have two time periods morning (am) and afternoon (pm) with business hours being 08:00 to 18:00 when you press the 5-day button.
I have downloaded fullcalendar-scheduler-4.2.0 and modified…

Gatekeeper
- 29
- 2
2
votes
0 answers
FullCalendar recurring events create duplicates
I am implementing a calendar for my new website I retrieve events from a BackEnd application and show result in a modal using fullcalendar.
I also use recurring feature from fullcalendar (https://fullcalendar.io/docs/recurring-events) to facilitate…

Marech
- 157
- 12
2
votes
0 answers
Is there a way to modify a mutli-day event in FullCalendar 4 to show up like this?
I am currently working on a web app, and I wanted to embed a calendar. I went with fullcalendar 4 as it looked nice and I only want to use it to display events. I set up the calendar and I’m showing my events to the user based on a json that…

Adam8899
- 231
- 1
- 2
- 7
2
votes
0 answers
How to clear the FullCalendar cache events
After drop an event from an external list and save this event on me server side i keep seeing the dropped event which is not in my source array.
I tried a lot of solutions to clear events using EventSources as in this topic, but what is happening is…

Ranny
- 136
- 2
- 16
2
votes
2 answers
how to catch next, prev, today event with fullcalendar for Angular 7 cli
I am implementing fullCalendar in my Angular 7 app, the calendar is working and i am importing some Events to it, but i am trying to do it more efficent, i am trying to bring just the events that the calendar needs.
So.. i have some questions.
How…

Sergio Cano
- 690
- 3
- 13
- 36
2
votes
0 answers
Fullcalendar migrate from 3.x to 4.x extraParams doesn't manipulate multiple input as array
I'm trying to migrate from fullcalendar 3.x to 4.x

Giuseppe Lodi Rizzini
- 1,045
- 11
- 33
2
votes
1 answer
PrimeNG - FullCalendar: cannot access fullCalendar methods
I have an Angular 7 app in which I use PrimeNG and FullCalendar 4 to display and manage a day schedule.
To delete an Event I added a custom delete Icon to the rendered events and bound its onClick event to my onEventDeleteClicked function.
As per…

Mr.Whalecott
- 31
- 4
2
votes
0 answers
Angular 6 - fullcalendar
I'm having issues in integrating fullcalendar with angular 6. I'm using the latest documentation as reference, however it only works with angular 7. Executing ng serve is giving the following errors:
ERROR in…

Ganymede
- 165
- 2
- 7
2
votes
2 answers
I can't seem to get resourceId on eventDrop and drop, im using resourceTimelineMonth and are trying to move them around
I can't seem to get resourceId on eventDrop and drop, im using resourceTimelineMonth and are trying to move them around.
If i try info.resourceId i get "undefined".
editable: true,
droppable: true,
eventResize: function (info) {
alert("Resize…
user11708147
2
votes
5 answers
Is EXDATE not included in rrule for Full Calendar
I have a recurring calendar event that happens on the 4th Friday of every month and I want to exclude 1 Friday event. I've tried EXDATE but I'm getting an error
Failure passing JSON
Without EXDATE the rrule works fine.
Here are the details that…

DeanO
- 93
- 1
- 10
2
votes
0 answers
change backgroundColor of FullCalendar event (v4)
I'm trying to implement a 'selected event' behavior in FullCalendar v4 but no luck.
The behavior I want is:
When clicking a event, it's color changes and the event becomes the selected event
When clicking another event, the previous selected event…

Dany Dhondt
- 881
- 9
- 27
2
votes
2 answers
How to populate modal on event click?
Currently setting up FullCalendar using ReactJS. I can populate my calendar and the events but having trouble with the eventClick={}. How can I populate a modal using eventClick={} and retrieve event information?
I have managed to get the modal to…
user7376524
2
votes
1 answer
Fullcalendar 4 how to see if event is recurring from rrule
I am using fullcalendar version 4 to insert/update recurring events. I have successfully created recurring events by inserting an rrule into my db and then ussing the rrule plugin for fullcalendar to display it.
When the events load they look like…

chris.cavage
- 759
- 1
- 13
- 35
2
votes
3 answers
How to append an element to display more text in full calendar event with React js?
I am attempting to implement Full Calendar into my React JS app project. What I want to do is rather than just display title, I also want the event to display a description.
I seen a previously asked question Display more Text in fullcalendar which…
user7376524