Questions about the 3.x branch of FullCalendar. Always use the "fullCalendar" tag in conjunction with this tag.
Questions tagged [fullcalendar-3]
381 questions
3
votes
0 answers
Fullcalendar Custom Views via JS classes destroy throws errors
I have implemented Fullcalendar Custom View by referring document Custom Views via JS classes. It seems to worki fine, but the destroy method throws an error: View.prototype.destroy.apply is not function.
I have used the below code:
var FC =…

Robert
- 3,373
- 1
- 18
- 34
3
votes
1 answer
Fullcalendar refresh events from local variable
I am using FullCalendar in my POC project. What I have are two data-grids (using jTable). I want to put some rows there, click 'Send Request' and then JSON is being created. It is being send to my backend application, then it is processed and…

Chlebik
- 646
- 1
- 9
- 27
3
votes
2 answers
Tooltip in fullcalendar not working
everyone!
I'm trying to show tooltip over events in fullcalendar. But it's not working and show in console this message
Uncaught SyntaxError: Unexpected token (
What can be a problem? This is my js-function…

Андрей Баранов
- 413
- 4
- 6
- 15
3
votes
6 answers
Twitter bootstrap tooltips do not work for events in fullcalendar
I want to show bootstrap tooltips over events in fullcalendar of Adam Shaw. I tried this code:
eventMouseover: function (event, jsEvent) {
$(this).tooltip();
$(this).css('rel', 'tooltip');
…

user2598794
- 697
- 2
- 10
- 23
3
votes
1 answer
Full Calendar JS wrap time from end of business day to start of next business day
I am using Full Calendar JS in the AgendaWeek view and I have limited the visible hours to 8am-5pm instead of the full 12 hours per day it shows by default, however when I try to expand an event's time and drag it past the end of the visible hours,…

bgallagh3r
- 5,866
- 1
- 14
- 17
2
votes
1 answer
fullcalendar reverse date sorting - latest day to be shown first
Anyone know how to sort the fullcalendar so latest dates i shown first
Below image show the dates en ascending order, but how to show in descending
The code i have tried with is as follows:
$(document).ready(function()…

Hank
- 29
- 3
2
votes
1 answer
Trigger an event when next month button clicked on fullcalendar not working
I have the following fullcalendar and it is loading current month data. This is loading correctly with all the events.
$(document).ready(function() {
var d = new Date();
var defaultMonth = d.getMonth() + 1;
var defaultYear =…

Anu
- 1,123
- 2
- 13
- 42
2
votes
1 answer
How do I highlight a specific day on fullcalendar v.3.1 js/c# retrieved by gotodate function?
I have this code:
$(document).ready(function () {
/*var event_list = $('#event_list');*//*gil70l*/
//$(document).ready(function () {
//
$("#btnsearch").click(function () {
var res = $("#txtSearch").val();
res =…

ISO
- 41
- 5
2
votes
0 answers
jQuery Fullcalendar: unable to set a fixed event duration
Trying to use the fullcalendar plugin (V3).
That's what I have for now:
var calendar = $('#calendar').fullCalendar({
themeButtonIcons: {
prev: '',
next: '

Max Krizh
- 585
- 3
- 7
- 34
2
votes
0 answers
In jQuery Fullcalendar listMonths view, how to display all dates with events and no events
I have Fullcalendar working nicely in listMonth view, but I'd also like to list all dates with events, and no events.
Here is my current calendar:
I'm also hoping date 06-June and 07-June (with no events) to be appeared in the list.
…

fafatifinifi
- 21
- 1
2
votes
3 answers
Fullcalendar | Change color of fc-event-dot at list view
I am using full calendar and i am setting the defaultView to listMonth like this:
var events= [... this.events,
{
"title": "a title"
"start": "a date",
type: "X"
},
{
"title": "a title 2"
"start": "a date…

Iraklis Bekiaris
- 1,163
- 15
- 43
2
votes
1 answer
event year view in fullcalendar v4
I would like to display year view of events in fullcalendar v4. Year view has been added to full calendar until version 2.2.7. Later version does not have this. So, I decided to create year view using custom view . But I did not get where should I…

Premlatha
- 1,676
- 2
- 20
- 40
2
votes
0 answers
FullCalendar - Duplicate item
I have a problem with JavaScript FullCalendar.
When I click on a day, a modal opens, where the user has to choose a name. This name is added to the selected day.
When I add the second event (so, first name), it works. When I click on another day to…

Graham Christopher
- 21
- 2
2
votes
0 answers
How to allow selection of just first day of background event in fullcalendar?
I'm trying to build a calendar for an apartment with Fullcalendar showing occupied dates through background event so that the full day in month view has color. The issue is with the first day of the occupied period. Since checkin is 3pm, the user…

Stefano Sada
- 21
- 1
2
votes
0 answers
How to display events in fullcalendar with jquery?
Something's wrong with my code. The calendar displays fine and works fine. But events do not show. I believe it must have something to do with css? After searching hours in the css files and on SO, I need help. I use jquery and hardcoded events for…

Grogu
- 2,097
- 15
- 36