Questions tagged [fullcalendar-3]

Questions about the 3.x branch of FullCalendar. Always use the "fullCalendar" tag in conjunction with this tag.

381 questions
42
votes
9 answers

Recurring Events in FullCalendar

I am using jQuery FullCalendar as my calendar used in my website for availability agenda. Is there any functions/methods/options in fullcalendar that handles my recurring events by Days? For example, Monday only to time 7:00AM to 9:00 AM, tuesdays -…
10
votes
7 answers

fullCalendar not showing the correct end date

I am looking at the debug page of the official FullCalendar site. I want to schedule an event from 22/09/2015 to 30/09/2015 (dd/mm/yyyy). But it only shows up for dates from 22/09/2015 to 29/09/2015 - 30/09/2015 is missing. Here is the…
Dushy
  • 375
  • 3
  • 13
7
votes
4 answers

Fullcalendar get resource id on event click

I am using Fullcalendar. Everything is working fine but not getting Resourceid on event click. Here is my code: var date = new Date(); var d = date.getDate() + 1; var m = date.getMonth(); var y = date.getFullYear(); …
Jayesh
  • 71
  • 1
  • 2
6
votes
1 answer

How to change the color of enitre cell if the same date has more than 3 events using full calendar

I am using full calendar to generate dates and show events. everything is working fine but I want an additional feature i.e I want to change the cell color to red if it has more than 3 events. If a date has more than 3 functions/events then the…
Khizar Nayyar
  • 378
  • 1
  • 14
5
votes
3 answers

How to change background color of selected date in FullCalendar

I am trying to change the background color of the selected date in my calendar. In my below code, it highlights all the clicked date, how can I only highlight the last clicked date? dayClick: function (day){ var mydate = new…
Eem Jee
  • 1,239
  • 5
  • 30
  • 64
5
votes
1 answer

Display only 2 Weeks in Month View [FullCalendar]

How to show only 2 weeks or 15 days in a month view? I tried the following: $('#calendar').fullCalendar({ defaultView: 'month', duration: { weeks: 2 } // or days: 15 }); but it didn't work. I read the documentation but it only shows customization…
Cons7an7ine
  • 708
  • 6
  • 17
5
votes
1 answer

date.getDate() is not a function. (In 'date.getDate()', 'date.getDate()' is undefined) FullCalendar in Ionic 3

I'm coding on a Ionic 3 project where i use a FullCalendar plugin for display a calendar ui. I've a problem with this code in the module of page when i try to change background of a single day on calendar. I've used dayRender function of…
4
votes
1 answer

Full calendar drop down list on event hover

I want to display drop down list on full calendar events on hovering the events. can anyone help me out? here is the screen shot that i am having currently I want the drop down list on top of everything else i have tried z-index but not able to get…
Jay Prajapati
  • 362
  • 4
  • 26
4
votes
2 answers

Full Calendar Default View

Since Full Calendar is not really suitable for smaller screen I'm trying to change the "default view" of the full calendar according to the width size of the screen. I'm trying to implement that with this line code: defaultView: (function () { …
4
votes
1 answer

How to show location in fullcalendar and gmail?

i've tried all day but nothing. I need to show also the location but i don't find in fullcalendar documentation anything helpful. This is my code now. Someone can help me? Thanks in advance. $('#eventList').fullCalendar({ defaultView:…
Germano Plebani
  • 3,461
  • 3
  • 26
  • 38
3
votes
1 answer

Change fullcalendar event color by start and end datetime with current datetime

I am using a fullcalendar.Here the issue is theevent color.when event's start and end matches with cureent datetime it cannot changes its color. eventAfterRender: function (event, element, view) { var dataHoje = new Date(); …
Sindhu Diya
  • 79
  • 1
  • 7
3
votes
2 answers

FullCalendar end date null whenever event is not changed even though allday false

Does anybody know why is the end date null on those "allday=false" events? Fiddle Sample: https://jsfiddle.net/L1g0z3jd/ I instantiate it differently from the start date, it shows just fine in the calendar view, but for some reason I can't…
3
votes
1 answer

Full calendar resource extra params not added

I try to customize the params that send with the events and resources on the fullCalendar library. I use full calendar version 3. I can fetch these custom params from a form and assign them to events request. But the issue is with resources that I…
Nasser Ali Karimi
  • 4,462
  • 6
  • 34
  • 77
3
votes
1 answer

How can I change background color in fullcalendar

How can I change background color in full calendar? How can I change the background color for the available time in businessHours? All available must be green and not-available(events) must be red. $(function() { $('#calendar').fullCalendar({ …
Serhii Danovskyi
  • 385
  • 3
  • 17
3
votes
1 answer

FullCalendar Event Object: Non-standard Fields (GCal)

FullCalendar (FC) documentation states Non-standard Fields In addition to the fields above, you may also include your own non-standard fields in each Event Object. FullCalendar will not modify or delete these fields. For example, developers…
1
2 3
25 26