Questions about the 3.x branch of FullCalendar. Always use the "fullCalendar" tag in conjunction with this tag.
Questions tagged [fullcalendar-3]
381 questions
0
votes
0 answers
Fullcalendar v3 visibleRange, validRange not working properly
I am trying to show visibleRange from 2017-08-15 to 2017-09-03, but on the calendar show's range: 27, 28, 29, 30, 31, 1, 2. Missing half of the days from the range. But if I set range from 2017-08-10 to 2017-09-01, shows all date's inside the range.…

Johny Albar
- 1
- 1
0
votes
1 answer
jQuery FullCalendar > How to add a button (or link) to only days having events
I am using FullCalendar3.5.1.
I want to add one custom link to event day after all event for the day has been rendered.
If I use eventAfterRender, it display link after each event. So if there are 3 events it display 3 links while I need only…

CFML_Developer
- 1,565
- 7
- 18
0
votes
1 answer
FullCalendar display +N more but not the title
I am using FullCalendar3.5.1 Everything working correctly except when there are more than one event for the day (they comes dynamically through JSON), it just display +N more.The examples I have seen it should display atleast one event title and…

CFML_Developer
- 1,565
- 7
- 18
0
votes
1 answer
Is this possible to display week in FullCalendar starting with given week start date?
Parameter firstDay doesn't seem to work with type: 'agendaWeek' or dateAlignment: 'week'
I am trying to display the current week from given firstDay (say 2) but I cannot do that.
Duration parameter doesn't work, firstDay doesn't work, nothing…

Patlatus
- 1,217
- 2
- 16
- 28
0
votes
0 answers
Google Calendar not displaying events
I am working on google calendar api to fetch events of users google calendar but events not displaying on calendar.I am fetching events using google api key and I get array of events sorces and pass it to eventSources but still not work.
Below is my…

varsha
- 49
- 5
0
votes
0 answers
getAnnotations is an unknown FullCalendar method, v3.5.0
I am working with some old code that used FullCalendar 1.6.1, which I am upgrading it to FullCalendar 3.5.0. The old code is using a call to a method called getAnnotations, which apparently has been deprecated and removed from FullCalendar 3.5.0.
I…

Stephanie Fischer
- 21
- 1
- 5
0
votes
0 answers
Multiple fullacalendar widgets - synchronized view changes
I have a dashboard, where people can put multiple fullcalendar widgets (imagine a team dashboard with a fullcalendar widget for every person in a team). The main issue with this is performance. One client has 16 such widgets (all quite full of…

MiChAeLoKGB
- 796
- 14
- 38
0
votes
0 answers
Fullcalendar displaying Month and year weird
I am using Fullcalendar but when ever I switch to "week view" and then use the forward and back buttons the date is displaying really weird, like so... How can I fix this and/or has anyone had this issue?
Jun 4 – 10, 2017
This is my code:
…

LargeTuna
- 2,694
- 7
- 46
- 92
0
votes
1 answer
How to create a full day event in fullcalendar
I am really stuck with this.How can i create a full day event in fullcalendar when clicked on a day.
dayClick: function (date, allDay, jsEvent, view) {
var eventTitle = prompt('Provide Event title');
if (eventTitle) {
…

Pooja
- 113
- 1
- 2
- 7
0
votes
0 answers
Can I import and save each event in a public google calendar to my asp.net mvc database?
I'm working in asp.net mvc, and am trying to display all events from any public google calendar in the fullCalendar I've built for my application. Currently, I'm displaying a users events that are saved in the database under an Events model, as well…

efarr
- 9
- 1
0
votes
1 answer
How to display unique modal on eventClick depending on if event comes from Model.ListA or Model.ListB
I'm using fullCalendar in Asp.Net MVC to create a calendar syncing application, where two people can view each-other's events on the same calendar. That all works fine and dandy, now I just want to the modal to be unique depending on if events come…

efarr
- 9
- 1
0
votes
0 answers
Fullcalendar: busy day and array of not busy time ranges
thank you for the great addition!
tell me, is it possible to deduce some indication that the day is filled with events?
is it possible to get an array of free hours and hours are already employed for a specific day?

M Sazanof
- 1
- 2
0
votes
1 answer
Date in title shows as interval for no obvious reason
I'm tweaking the titleFormat to get Friday, April 21, 2017 but I'm getting strange results:
dddd renders Friday
LL renders April 21, 2017
But putting both together, dddd LL, renders as Friday, April 21, 2017 – April 21, 2017
What am I…

Álvaro González
- 142,137
- 41
- 261
- 360
0
votes
1 answer
Set height of event with no end
In my agendaDay view I some times need to display events that do not have an end time:
$(".agenda").fullCalendar({
events: [
{
title: "Start day",
start: '2017-04-19T09:00:00'
},
{
…

Álvaro González
- 142,137
- 41
- 261
- 360
0
votes
1 answer
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 render callback. It also correctly changes the color of the time slot…

abbood
- 23,101
- 16
- 132
- 246