Questions about the 2.x branch of FullCalendar
Questions tagged [fullcalendar-2]
43 questions
1
vote
2 answers
How to prevent highlight (gray background) of an external event in fullcalendar
I already have start and end time for an external event but is there any correct way to set the end time on highlight (gray background) of the same external event.
Or if there is no way to set the end time on highlight then can we remove the…

Adeel
- 2,901
- 7
- 24
- 34
1
vote
2 answers
Disable highlight of an external event in fullcalendar
I am using the fullcalendar jquery plugin v2.6.1. Actually, I want to prevent the highlighted option of an external events while dragging to the calendar.
Is there any possible way to disable the fc-highlight from the event or any option to show the…

Adeel
- 2,901
- 7
- 24
- 34
0
votes
1 answer
Format date events to dd-mm-yyyy in fullcalendar
I have a database, where there dates who are in format like 21-01-2023 but fullcalendar read dates like 2023-01-20.
I would like to read dates events like 21-01-2023 14:55.
I set lang to fr but just change the language not the the format date.
Any…

stratos equation
- 3
- 1
0
votes
0 answers
Fullcalendar 2.3.2 agendaDay cannot change color of passed TIME
I'm editing a bootstrap 3 project using fullcalendar 2.3.2. I colored the passed dates in month and week views in grey using the class fc-past. All passed dates in month views are colored grey same for passed days and times.
My issue is when I try…

Elio Chamy
- 13
- 4
0
votes
0 answers
Fullcalendar v2 how on select free time on resource open appointment create blade with selected dates? Laravel
I have fullcalendar v2 and Laravel application. Almost everything is done with databases an other stuff but last thing is missing. I am not so good at JS and need someone help.
I have this script and it works good for displaying appointments and…

Karlis Pokkers
- 224
- 5
- 18
0
votes
0 answers
full calendar ajax event insert not rendering on calendar
I make post request in laravel and get this object in response:
{id: 11, title: "dummy", allDay: false, start: "2021-06-12T19:23:00+00:00", end: "2021-06-12T19:28:00+00:00", …}
allDay: false
color: "#f05050"
end: "2021-06-12T19:28:00+00:00"
id:…

aryanknp
- 1,135
- 2
- 8
- 21
0
votes
0 answers
Laravel 5.8 | FullCalendar display events on calendar
I am trying to display events on calendar from this package:
composer require maddhatter/laravel-fullcalendar
I did model:
class Event extends Model
{
protected $fillable = [
'title',
'start_date',
'end_date',
…

Giacomo
- 341
- 2
- 8
- 25
0
votes
0 answers
FullCalendar: when events are populated and buttons are clicked it goes back to current month jquery
I have this problem in FullCalendar v2 where when I clicked the next or prev button(next/prev Month, technically). It will always go back to the current month. Please also note that the months are being populated with events upon clicking the next…

Jane
- 23
- 6
0
votes
2 answers
Get the first and last visible date of the fullcalendar without using datepicker
I use fullcalendar in my code and have implemented and added events into it, but my goal was to get the first visible and last visible date of the calendar.
What we wanted to do is get the visible first and last dates so that we'll be able to throw…

Jane
- 23
- 6
0
votes
1 answer
Laravel 5.8 + FullCalendar + Popover: Attempting to replicate demo is failing with popover error
In my application, I am trying to use FullCalendar to display events. Specifically, I'm trying to replicate the demo example they provide.
I am making use of maddHatter\laravel-fullcalendar
My Laravel/PHP code in a blade template to generate the…

Phil
- 320
- 4
- 16
0
votes
1 answer
FullCalendar not showing up in Asp.Net Core Razor View
I have been following this video tutorial: https://youtu.be/IpCEfbLiwag in hope to achieve a page which contains a FullCalendar containing the dates from my Task table from the database. While it is not necessary to go through the video in order to…

Questieme
- 913
- 2
- 15
- 34
0
votes
0 answers
Fullcalendar agendaDay view - how to display events side by side?
How can I display events side by side on day agenda view? I've been trying with some javascript positioning inside eventAfterAllRender function, but no success. Like example on picture, how to position events like left align?
EDIT: Fullcalendar…

Daniel
- 63
- 1
- 10
0
votes
1 answer
Get weeknumber from fullcalendar
I have setup fullcalendar to display weeknumbers as per the docs: https://fullcalendar.io/docs/v3/weekNumbers#v2
I would like to get the weeknumber from fullcalendar, so I can use it in my code, because I need to display it outside of fullcalendar.…

ThomasD
- 2,464
- 6
- 40
- 56
0
votes
0 answers
Calling eventRender After eventSource available
I need to call eventRender when eventSource available,
$(function() {
function getEventSource () {
var ev;
setTimeout(function () {
ev = [
{
title : 'event00',
start :…

ajayv
- 641
- 6
- 21
0
votes
1 answer
How do you delete an object event source in fullcalendar?
I have added a event source as such:
$('#calendar').fullCalendar('addEventSource', function(start, end, timezone, callback) {
getInactive(start, end, timezone, callback);
});
}
the events inside that have id:0
If I do…

frugal
- 5
- 3