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
4
votes
0 answers

Using fullcalendar-scheduler with Angular-Cli project

I am trying to evaluate the use of fullcalendar-scheduler in my Angular 4 project that uses angular-cli. I have managed to get the fullcalendar core working but have been struggling to get the resources show up in the calendar by using the…
JerryK
  • 201
  • 1
  • 11
4
votes
1 answer

Full calendar - add text to day when there is no event

Would it be possible to add background text in full calendar when there is no event found for day, need help please e.g
dEL
  • 482
  • 1
  • 6
  • 23
4
votes
2 answers

FullCalendar: allow event only to be moved from one resource to another

I tried many things (editable, eventContraint, ... ) how can I setup a FullCalendar, so that an event can only be changed from one resource to another, but that it is not allowed to change the start, end or duration? I really have no clue in what…
Andries Heylen
  • 363
  • 1
  • 2
  • 12
4
votes
2 answers

FullCalendar resource clickable

In FullCalendar how can I make a resource clickable? I've checked the API but I cannot see anything about that, am I missing something? I'm after a resource-click-event as we have for events?
TZAU
  • 53
  • 2
  • 6
3
votes
1 answer

Prevent FullCalendar (React) from refetching events & resources on every render

I have FullCalendar configured for my React site. Everything works fine except for having too frequent refetching from server. In below example (which I have simplified), I change Redux state from a different component which logs out 'hello' in the…
blitz
  • 623
  • 5
  • 18
3
votes
1 answer

Navigating in FullCalendar with previous/next when CustomView has a visibleRange

My Calendar has a specific view : it shows 31 days (display 4 days before the current day, and 27 days after) Therefore, I have a dynamic visibleRange for my view let INIT = moment().subtract(4, 'days').format('YYYY-MM-DD'); let INIT_END =…
3
votes
1 answer

show same month/week/day upon refresh of fullcalendar

I am using a fullcalendar plugin to display various events. My problem is when I change the month/week being viewed, then refresh, I get taken back to the current month/week, when I want to stay on the same month/week I was viewing beforehand. i.e.…
user11508332
  • 537
  • 1
  • 11
  • 28
3
votes
1 answer

Rerender FullCalendar on Angular 2+

I don't know how to re-render (or re-draw) a full-calendar in Angular (@fullcalendar/resource-timeline). After I call the API, the data used to draw calendar is changed, and I hope the calendar will be updated (re-rendered). But I don't know how to…
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
0 answers

Get event start and stop time from the event click in timelineview in fullcalendar

I have created fullcalendar with scheduler. I have created an eventClick like this in it: eventClick: function(event, jsEvent, view) { var start = event.start; var stop = event.end; openModal(start,…
user9862395
3
votes
3 answers

Sticky Header on Fullcalendar scheduler

I am getting mad with trying to get sticky header with full calendar scheduler. I tried height: "parent" I saw a lot of posts but none of them worked. but then there are 2 scrollbars (one for the main window and one for the calendar). Is there a…
Chessman
  • 87
  • 1
  • 8
3
votes
1 answer

Add resources dynamically to fullcalendar

I have a scenario where I have all the resources to be displayed in a dropdown list which is a multi-select dropdown. I want to add a resource to the calendar when the resource is selected in the dropdown. Here is my code for the calendar: var…
Raviteja.K
  • 31
  • 1
  • 4
3
votes
1 answer

fullcalendar businessHours on non-working days in agendaDay view with resources

How should I grey-out the whole day if none of my resources have businessHours set? When businessHours are set for each of the resources on the specific date When businessHours are not set for any of the resources on the specific date
brklja
  • 131
  • 2
  • 13
3
votes
1 answer

How to delete externally dropped events from fullcalendar?

I have been trying to make it so I can drag events from fullcalendar to the trash, and the code I have works great for events that are rendered when the calendar is initialized, but it doesn't seem to work with events that have been dropped onto the…
PoDuck
  • 1,381
  • 15
  • 38
3
votes
3 answers

Set resourceOrder dynamically after the scheduler was rendered

I'm using the fullCalendar Scheduler in an Angular 1.5 application. I wrapped it into a directive and inside the directive I have a config object with all the properties var calendarConfig = { schedulerLicenseKey: '----------------------------', …
gmodrogan
  • 323
  • 5
  • 14
1
2
3
32 33