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
3
votes
1 answer

Fullcalendar: How is possible to select multiple resource and days in timelive view

I'm using fullcalendar and I need to let user select multiple rows for create a multi-resource event (documentation) but I not find how to do so. Anyone have any idea?
gidanmx2
  • 469
  • 1
  • 9
  • 24
3
votes
4 answers

How to delete an event on FullCalendar?

I am trying to delete an event when it is being clicked. This is what I have and I have no idea eventClick: function(calEvent, jsEvent, view) { alert('Event: ' + calEvent.title); alert('Coordinates: ' +…
Sof
  • 31
  • 1
  • 1
  • 4
3
votes
1 answer

How to rechange firstDay properties in FullCalendar by jquery

I want to rechange value of firstDay properties of FullCalendar by jquery when i change view mode month -> week. Initial $('#calendar').fullCalendar({ firstDay: 0 }) Change To $('#calendar').fullCalendar({ firstDay: moment().weekday() }) But it's…
3
votes
0 answers

How to change dynamically event by start and end date in FullCalendar?

function myFunction(check_in_time,check_out_time) { $('#calendar').fullCalendar({ events: [ { title: 'Check-In-Out-Date', start: check_in_time, end: check_out_time, allDay: true …
3
votes
5 answers

Fullcalendar set minTime and maxTime dynamically

I have implemented fullcalendar v2 resources calendar. What I am not able to fix is setting dynamic minTime and maxTime based on day. Each day have different work timings. Monday 10:00 to 14:00 Tuesday 16:00 to 24:00 ... I had initilized my…
Tarunn
  • 1,038
  • 3
  • 23
  • 45
2
votes
1 answer

Modifying resourceEditable with method setProp is not working

I am trying to modify the value of the property resourceEditable of a given event inside the callback eventDidMount. To do this I am using the method setProp like this : arg.event.setProp('resourceEditable', eventEditable); arg is the argument of…
2
votes
0 answers

Fullcalendar timeline week view the event end is not working

This is my calendar init code,using V5.8.0 var calendarEl = document.getElementById(id); calendar = new FullCalendar.Calendar(calendarEl, { schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives', headerToolbar: { left: 'today…
2
votes
0 answers

FullCalendar Scheduler - nowIndicator only works with initialView as Day

Like the title says, I'm using the the FullCalendar Scheduler but I can't seem to make the nowIndicator to work with the initialView as resourceTimelineMonth or resourceTimelineWeek. The indicator stays at the 00:00 of the day. It only works fine if…
2
votes
2 answers

FullCalendar is not defined. Laravel 8 Fullcalendar-scheduler version 5.6 es6

Uncaught ReferenceError: FullCalendar is not defined when npm install. If I use the cdn source inside my calendar blade. Calendar will display correctly. However, I change to npm install and I am stuck composer install npm i npm run…
mejohnnyv
  • 61
  • 2
2
votes
1 answer

How to get resources via json stream in fullcalendar react v5 scheduler?

I've a problem by serving the resource via a json feed in fullcalendar scheduler with react. The feed works in the normal fullcalendar scheduler without react. import React from 'react'; import FullCalendar from '@fullcalendar/react'; import…
bit_busker
  • 31
  • 3
2
votes
1 answer

Fullcalender V5 RefetchEvents issue

I am using Fullcalender Scheduler V5. I added calendar.refetchEvents(); at the end of eventDrop, eventResize, eventClick also. It is working well. But when I use it in other functions to add /edit the events, it is not working.Here is my code: …
2
votes
1 answer

Fullcalender V5 How to get ResourceId of events

I am using Fullcalender scheduler V5. How shall I get the resourceId on eventDrop,eventClick etc. I tried like this: eventResize:function(info) { alert(info.event.resourceId); }
Maya
  • 183
  • 1
  • 14
2
votes
0 answers

How to drop an external event on FullCalendar events

I'm on FullCalendar v5.1.0 with Scheduler. I use FullCalendar.Draggable to create events with a drag and drop from DOM elements outside of FullCalendar. Now I want to be able to drop my element on the calendar to create an event or on another event…
2
votes
2 answers

Fullcalendar V5 How to adjust time slot height?

I am wondering how I can change height of time slots in Fullcalendar V5?
John S
  • 21
  • 1
  • 3
2
votes
1 answer

Setting scrollbar position on Full Calendar horizontal view

We are using full calendar time view and more specifically the timeline view. It works great however there is one issue which is very frustrating and that is when you access year view and the scrollbar defaults to January as it is the furthest…
1 2
3
32 33