Questions about the 5.x branch of FullCalendar. Always use the "fullCalendar" tag in conjunction with this tag.
Questions tagged [fullcalendar-5]
573 questions
2
votes
1 answer
How to render a popover React component for a FullCalendar event?
This may be a simpler problem than I am making it out to be, but I am still fairly new to React and this is my first time using FullCalendar. It has gone okay so far... up to trying to implement tooltips/popovers for events. There are a lot of great…

Mini Khajiit
- 21
- 4
2
votes
1 answer
FullCalendar + React, can't made selection for day which contains allDay event
Have a strange issue with FullCalendar + React, I suspect that it might be a bug, but don't sure, maybe I do something wrong. When day contains allDay event, it isn't editable. When I remove this allDay event, everything works good.
The MVCE below…

Anatoly
- 5,056
- 9
- 62
- 136
2
votes
0 answers
How to display fullcalendar within jquery steps?
What is the appropriate way to display fullcalendar within jquery steps?
I've tried the following way but it doesn't work.
If I try to display in first step it loads fine but after that no. How to fix this issue?
Please, I really need help, I've…
user19367608
2
votes
1 answer
how to update event in fullcalendar 5 when click on button?
i create fullcalendar5, in fullcalendar5 update is done by dragging event and changing their place. but in my case update done when i click button update.
when i click on event it show form edit event, i want when i edit title value and click button…

achraf bourki
- 159
- 2
- 11
2
votes
1 answer
Modifying resourceEditable with method setProp is not working
I am trying to modify the value of the property resourceEditable of a given event inside the callback eventDidMount. To do this I am using the method setProp like this :
arg.event.setProp('resourceEditable', eventEditable);
arg is the argument of…

Julien Rouard
- 31
- 2
2
votes
0 answers
FullCalendar v5 - Best way to update full list of events in React?
Let's consider the following scenario -
we have a dropdown/select component (outside of FullCalendar) for a list of departments - Department 1, Department 2 etc.
Each department has its own list of events (department1Events from below for example),…

complexSandwich
- 493
- 2
- 9
- 23
2
votes
1 answer
populate events for FullCalendar 5 with a Json URL in .NET Core
I want to populate events for a FullCalendar 5 with a Json URL in .NET Core
Here's the initialization of the calendar :
document.addEventListener('DOMContentLoaded', function() {
var calendarEl = document.getElementById('calendar');
var calendar =…

SylvainKrier
- 69
- 6
2
votes
1 answer
Total Specific Attribute of All Events on a Given Day - Fullcalendar
Requirement: Total an extended prop on 0..n events on every day cell
I understand there are day cell render hooks like day cell content hook among other hooks that we can utilize to accomplish this. The day cell content hook looks very promising,…

karns
- 5,391
- 8
- 35
- 57
2
votes
1 answer
FullCalendar - Getting both HTML and arg in eventContent
I am trying to create a custom event tile in FullCalendar. I want to show the title on one line and an extendedProps entry on the next one. Now I found 2 ways to achieve either HTML or using args:
eventContent: (arg) => ( arg.event.title + ' ' +…

Marc
- 25
- 1
- 5
2
votes
1 answer
Servicestack return array instead of object with an array
I have a servicestack POCO object
public class SiteCalendarItem
{
[DataMember(Name = "title")]
public string Title { get; set; }
[DataMember(Name = "start")]
public string StartD { get; set; } //DateTime
[DataMember(Name =…

BertDB
- 41
- 7
2
votes
1 answer
Why does useEffect React Hook not work properly with dependency?
I'm working at a React Web App with Fullcalendar. I think one does not need to know Fullcalendar in order to answer this question. It's rather a matter of React understanding.
Long story short, Fullcalendar has an api that refetches any events from…

Scorpia
- 375
- 4
- 15
2
votes
2 answers
FullCalendar v5 - Show the same view for 2 calendars
I am using FullCalendar vue component.
I have 2 calendars with different options, I need to change the view of second calendar whenever the first calendar's view is changed.
I am trying to use "datesSet" to achieve this but its not working.
here is…

Ali Seivani
- 496
- 3
- 21
2
votes
0 answers
How to pass custom http request header parameters in full calendar v5 event sources
The headers and beforeSend parameter does not work.
var calendar = new FullCalendar.Calendar(calendarEl, {
headerToolbar: {
start: 'title',
center: 'dayGridMonth',
end: 'prev,next'
},
eventSources: [{
…

vaibhav kanmeriya
- 143
- 1
- 1
- 9
2
votes
0 answers
Fullcalendar.io show more link(dayMaxEvents) tests doesn't work in the vue testing library
I am using full calendar v5 and testing-library/vue for tests. I try to test show more events in the popover. But although I am giving events more than 4 the show more link isn't being loaded on the calendar and it never works the moreLinkDidMount…

Damla Demir
- 21
- 2
2
votes
1 answer
FullCalendar is sending the server an odd start and end value to fetch the events
I am trying use the FullCalendar v5 plugin to add a calendar on my website. I want to fetch the events using AJAX request.
Here is what I have done
let calendarElement = document.getElementById('calendarElement');
let calendar = new…

Jay
- 1,168
- 13
- 41