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
1
vote
0 answers

Sort resource items in fullCalendar with Room

This is my resource and event items: const resourceItems = [ { "id": "c", "title": "Resource 1", sort1: 10, sort2: 7}, { "id": "d", "title": "Resource 2", sort1: 14, sort2: 5}, { "id": "e", "title": "Resource 3", sort1: 18, sort2: 3} ] const…
1
vote
0 answers

Selecting multiple events on resource timeline/scheduler

Is there a way to select multiple events on the resource timeline/scheduler? I have been looking at all the docs and can't find anything! Is this a feature?
Ben Howard
  • 39
  • 4
1
vote
1 answer

How to display Season, Semester, and Cycle of years on Fullcalendar

I'm looking for a calendar that allow me schedule events for all semesters, weeks of semesters,cycle of years and seasons. As suggested from the Github of Toast Ui, they said to look on full calendar…
David Martins
  • 33
  • 1
  • 6
1
vote
1 answer

Event doesn't render in FullCalendar v5 with eventRender. What to use instead?

I am trying to render events in FullCalendar v5 through a JSON array but I realised that eventRender does not work for v5. How can I do it instead then? (I do know about event render hooks but didn't understand how to use that) …
1
vote
2 answers

Tooltip in fullcalendar scheduler doesn't work

I tried to add tooltips to fullcalendar-scheduler 5.8 but could not achieve this functionality. In fullcalendar-scheduler template I added the "tooltip" and "popper" libraries and CSS who works with simple fullcalendar but no results. My template…
1
vote
1 answer

FullCalendar strange behavior deleting event from database

I need your help to understand the behaviour of my instance of FullCalendar Scheduler v5.5.0. My event source is a JSON array generated by a basic SQL request from database, each event with it's own unique id as usual. I'm using some jQuery code to…
1
vote
1 answer

Event click show the selected data with FullCalendar function

I have a problem for event click show the selected data with FullCalendar function in the popup modal. I just can show the start date data in the popup modal. Below is my sample coding:
1
vote
1 answer

Fullcalendar v5 eventContent not working with angular js

I'm using Fullcalendar v5 in angular js, and i'm trying to make a custom event with: https://fullcalendar.io/docs/content-injection eventContent: function(arg) { return { html: constructEvent(arg) } }, The thing is that if i add: "
1
vote
0 answers

Printing FullCalendar with header on every printed page

I'm using FullCalendar in an ASP.Net razor page. When printing I want to have a header (that includes title and logo) appearing on every printed page. What I currently have done is to have the header appearing fine on fist page but on the second and…
1
vote
0 answers

Fullcalendar 5 external event drop to resource timeline returns undefined even when extendedProp are present

New to Fullcalendar 5 - im using eventContent to replace everything in the event. When I drag external events to the calendar the event takes the "style" of the eventContent, but with undefined on on the same vars that do work in the eventContent on…
zzipper72
  • 945
  • 2
  • 10
  • 24
1
vote
0 answers

Fullcalendar Scheduler Printing - repeat headings on each page

I have a scheduler calendar with a lot of resources, usually printing on ~8 pages. However, the dates are not repeating on the top of each page, which makes all the pages after the first one essentially useless to me. Is there a way to force the…
1
vote
1 answer

Full Calendar resourceTimeGrid layout question

I am implementing Fullcalendar using the following code (WIP) This puts the events inside the calendar the correct way. But by Default the calender uses the starting time to position the event blocks inside the calendar. I would like the implement…
1
vote
1 answer

Set completely disabled/untouchable hours ranges

I am testing the functionality of this widget and now I've faced with situation when I must to create a vertical Resource view for the day work scheduler. _calendar = new FullCalendar.Calendar(calendarEl, { initialView:…
1
vote
1 answer

fullcalendar multiple calendars, how to click prev/next for all calendars

So I'm using fullcalendar for this project, having multiple calendars on the same page, each with their own prev/next/today buttons. What I am trying to accomplish is when clicking on the prev/next that it would fire for all the calendars on the…
1
vote
0 answers

Is there a way to expand resources on prev and next click events on Fullcalendar v5 resourceTimeline view?

I'm using fullcalendar scheduler v.5.3.2, and the resourcesInitiallyExpanded : true property when creating de calendar. When I click on prev or next buttons, the calendar renders with previously collapsed resources. Is there a way to expand all…