I am developing a webapp and am using jQuery fullcalendar plugin. I need to somehow disable certain time-slots. The current method I am using is to add events for the time-slots I want to disable and disallow event overlapping. Is there a better w...
I am making a fullCalendar backed car reservation functionality. This is the coffescript file. updateEvent = (event, delta, revertFunc) -> $.ajax type: "PUT" dataType: "json" success: (data) ->...
I'm using FullCalendar in my asp.net application. I need to change the day background color. What i have tried so far : dayRender: function (date, cell) { var today = new Date(); var end = new Date(); end.setDate(today.getDate()+7)...
I started a YearView in fullcalendar (derived from the basic 'MonthView', needed to display longer events such as school holidays), and I could use a hand if anyone is already familiar with the way events get displayed on a view. Using the...
I would like to set the initial month to an arbitrary month when I call the function to display the calendar. Say for example the user selects a date last june (June 2011) somewhere else and I want fullcalendar to show up with a month display of Ap...
I have a date in the future which is always 30 days ahead of the current date. It's stored in a Date object. I worked this out using: var currentDate = new Date(); var futureBlockDate = new Date(); futureBlockDate.setDate(currentDate.getDate() +...
I'm using Fullcalendar for a project I'm developing ... I have only one feature left to be implemented, which is when an existing event is dragged from it's original position to another time or date. I would like to know how I get the cur...
While I have seen this question asked, I haven't seen the answer. I just want to be able to color the background-color of the TD from a certain range.. Say I have my calendar that has slot minutes every 15 minutes and from 9am to 9pm, I would l...
I use FullCalendar in my application and its working. Now I need to change the color of Italian holidays into red. I did it for weekends but: I don't know how to add holidays in calendar. How can i change their color. This is my code : &l...
I'm trying to insert into jQuery full calendar event data, which in this case represents birthdays of users. I'm retrieving birthdays from MySQL database. Let's take a look at script php: if ($birthday_r = $connection->query("SE...
©2020 All rights reserved.