Questions tagged [fullcalendar-scheduler]

Use this tag for questions that are specific to features of the paid Scheduler plugin for FullCalendar.js (which includes the Resources, Resource-enabled views and print-friendly rendering - see https://fullcalendar.io/pricing for more info). It is suggested you accompany this with the "fullCalendar" tag to ensure visibility.

FullCalendar Scheduler is a paid plugin for FullCalendar, a JavaScript calendar developed by Adam Shaw. https://fullcalendar.io/

495 questions
2
votes
0 answers

FullCalendar interpret TimeZone from RRule

I am currently using FullCalendar to display Events in the day-grid. There are both, events with just a single occurrence and with recurrency. For the single occurences the start date is covered by moment-timezone conversion and displayed correctly…
SeeeK
  • 21
  • 1
2
votes
2 answers

FullCalendar - repeating a single event on every day without being told to

I'm playing with a basic implementation of FullCalendar. But with the code below (copy and paste into a file). My 'meeting' repeats at the given time every single day. I should have 1 event against Fred, 3pm to 6pm on March 1st. Not repeating. This…
2
votes
1 answer

Is it possible to use fullcalender slotEventOverlap option in the timeline view?

Is it is possible to use fullcalender slotEventOverlap option in a timeline view? I want to show the overlapping time. I have used https://fullcalendar.io/docs/timeline-view
2
votes
2 answers

Full Calendar customizable header

I have used the following attribute in the code as shown below :- columnHeaderFormat: { weekday: 'short', month: 'numeric', day: 'numeric', omitCommas: true } It shows somewhat like this Now as i want to achieve…
2
votes
1 answer

Date format in FullCalendar Timeline view

I am trying to configure FullCalendar 4.3.1 in Timeline view to display date in UK format in the title and on column headers. I use slotLabelFormat and titleFormat as below: slotLabelFormat: [ { day: 'numeric', weekday: 'short', month: 'short'}, …
blitz
  • 623
  • 5
  • 18
2
votes
1 answer

Fullcalendar 4: How to get the element ref of the dropped event on fullcalendar?

I am working on fullcalendar and need to get the element ref of event that is being dropped onto the calendar. I need to show a confirmation box overlay and in order to set it correct location on the calendar, I need exact element ref of event…
user2332505
  • 619
  • 2
  • 10
  • 19
2
votes
1 answer

Fullcalendar v4 - Resources (as a function): fetchInfo is null

So I posted an issue on the github page for angular fullcalendar, but I figured I'd take a stab here and see if anyone could spot the issue with my code or if I've discovered a bug. So I've been having issues loading resources in timeline view.…
2
votes
0 answers

FullCalendar V3 renderEvents function causes all other events to rerender

I am using the full calendar scheduler plugin and have 3000 events in a single 30 day viewing range. I have discovered that methods such as "renderEvent", "renderEvents" and "removeEvents" when called cause all events to re-render. This can be…
2
votes
1 answer

Using FullCalendar, how to add information to EventObject when eventReceive?

I've started discovering and using FullCalendar but I'm stuck with it. What I want to do is a ResourceTimeline in Month view, with external event dragging (a left panel). The subject later would be to have a modal when you drop an event, in order to…
2
votes
1 answer

How to get all events in vuejs in fullcalendar

In fullcalendar document , They give example for getting all events in javascript or jquery. But I could not find in vuejs(https://fullcalendar.io/docs/Calendar-getEvents) Please any one give example of get all events in vuejs
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…
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
0 answers

Count events per day with resources Fullcalendar

I am trying to count the events per day on fullcalendar but I am getting the wrong output. what I am trying to do is group and count the event per day and group by resources. but the output is just grouping it and assigning it on the 1st resource…
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
1 answer

Integration of FullCalendar into Apache Royale

I'd like to start a Apache Royale Project which needs Calendar/Scheduler functionality. I have been working a lot with FullCalendar which is a great library. Would it be possible to integrate FullCalendar in Royale and if so, how should I do it?