Questions tagged [fullcalendar-4]

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

546 questions
0
votes
1 answer

FullCalendar 4 inverse-background

I have problem with Inverse Backgrounds in FullCalendar v4.0.2. code: let calendarEl = document.getElementById(this.element_id); this.calendar = new FullCalendar.Calendar(calendarEl, { plugins: [ 'timeGrid' ], height: "auto", …
0
votes
1 answer

Bad request fetching json from razor post with fullcalendar

I have implemented full calendar. It does show as it supposed to, but fetching data goes wrong .cshtml
.cshtml.cs public class IndexModel : PageModel { public JsonResult OnPost(DateTime start, DateTime…
MartW
  • 131
  • 1
  • 10
0
votes
1 answer

How to use "resources" in v4 ng-fullcalendar?

The syntax "resources" isn't recognized in fullcalendar v4. The part written "resources:" is getting an error. WeekgridComponent import { Component, ViewChild } from '@angular/core'; import { OptionsInput, EventApi, View } from…
0
votes
0 answers

Resize option for Selected Dates across multiple months in FullCalendar

I just started using Full Calendar 4. Its awesome. All things working great. I am including a functionality to resize already selected dates across multiple months. For example, I select dates in April, and I want to continue my selection to 10th of…
Khurram Ishaque
  • 778
  • 1
  • 9
  • 26
0
votes
0 answers

Datetimepicker-DIV in Fullcalendar v4 customButton

I´d like to show a customized icon on Fullcalendar v4 customButtons and my working datetimepicker-div. I already have a div including a datetimepicker and it works fine. Is it possible to move the entire div into the customButton? Thanks a…
hxrzxr
  • 1
  • 1
0
votes
2 answers

How can I set all google calendar events to display with background rendering?

Im using FullCalendar 4, and I'm importing events from my google calendar. I want these to display in the calendar as full day background events to just show that I'm busy rather than display what the event is, and how long it goes on for. Importing…
Rusty_Paul
  • 21
  • 4
0
votes
1 answer

Show more details in event fullcalendar 4

I can't figure out how to show more details in fullcalendar 4 event. Following this post: [fullcalendar]Have listMonth display more details than month I tried this code without success: eventRender: function( info ) { if (info.view.type ==…
tomas
  • 121
  • 1
  • 2
  • 11
0
votes
2 answers

FullCalendar 4.0 within a Vue application

I am using fullCalendar v4.0 with no jquery. I have initialized it like this
In data object I have this. calendar: null, config: { plugins: [ interactionPlugin, dayGridPlugin, timeGridPlugin, listPlugin,…
Junaid Farooq
  • 2,484
  • 5
  • 26
  • 63
0
votes
0 answers

Multiple day Event not spanning correctly in Fullcalendar 4.0.1 - bug?

I'm having a hard time getting a multiple day event to span correctly after I upgraded from Fullcalendar 3.9 to 4.0.1 and I'm starting to wonder if it is a bug or that I'm doing something wrong. The event in the picture below called "10.00 Vossa…
Terje Nesthus
  • 810
  • 3
  • 12
  • 30
0
votes
0 answers

Custom about custom view in v4.0.1

Problems in upgrading to 4.0.1. documentation says: "for registering a custom view use createPlugin instead of defineView" but seems like this info is out of date also: QUESTION: So what is exact code rows in v.4.0.1 to replace my old: "defineView"…
DJV
  • 21
  • 4
0
votes
0 answers

How can I create another row on my calendar grouping those titles by its buildings?

I need to create a new row grouping the header columns that are similar to each other I've tried using resourceColumns and resourceGroupField, neither has had success. Perhaps I'm not making a good use of them.