fullcalendar

fullcalendar - display half-day event in the month view

How do you display a half-day event in the month view? For instance, I have an event that is 12 hours long. I would like the date cell for that event to only show a half bar. Is that possible? If so, how do you implement this? ...

FullCalendar's events function

I'm using Fullcalendar in my Asp.Net 1.1 application. For taking data from server side, I use Ajaxpro. So codes to gets events to Fullcalendar are written as below: $calendar.fullCalendar({ editable: true, selectable: true, theme: true, height: 545, defaultView: 'agenda...

How to edit width of event in FullCalendar?

This seems incredibly easy, but I have spent half a day bashing my head against the wall trying to figure out why my fullcalendar events are showing only at 77px, when the width of the cell(month view) seems to be either 90px or higher. I have tried modifying the fc-event css rule, but it seems like javascript is writing some inline styl...

Is it possible to display two/three months?

Is it possible to display two/three months? ...

FullCalendar dayClick functionality

Hello, I am fairly new to the FullCalendar, but totally love it's functionality. I am trying to use the dayClick function. Perhaps someone can guide me in the right direction. I currently have this. dayClick: function (date, allDay, jsEvent, view) { var titleNew = prompt('Event Title:'); var thedate1 =...

FullCalendar dayClick function conflict with select function

I have noticed when I am trying to implement the dayClick: and the select functions there seems to be a collision somewhere. Here is some narrowed down code. // WHEN YOU SELECT MULTIPLE DAYS select: function(start, end, allDay) { var title = prompt('New Select Date:'); if(title) { ...

FullCalendar: Fetching the initial date/time-stamp to show once events are fetched from server

First of all, hats off to Adam for pulling off this wonderful, well-written calendar plugin! Now for a a very typical use case. Below is what I want to achieve: Fetch events (URL added to eventSources) from the server side as JSON data. This is all fine and I have been able to achieve this. The events get rendered properly. USE CASE i...

events doesnt show start to end

Hello everyone, for some reason I cant get my events to have start and end on them except for the first event that shows during recurrence. Does anyone have any idea why this is so? I have a working example that shows what I'm talking about. http://jsbin.com/usori3/11/edit ...

Customize fullcalendar titel in basicWeek

Hello, Does anybody knows how I can customize the title in basicWeek and basicMonth view? At the moment the block starts with time and then the title. I want to show the time from and time to in the title of every event, like in agendaView. It is possible to format the content of the title with and Tags? Greetings Alexander ...

Display more Text in fullcalendar

I like the fullcalendar JQuery-Plugin. At the moment i am looking for a solution to display more information in event. For example in the DayView you see a event from 06:00 to 10:00. Now i want to display a additional description in this event (not only the time and the title). I hope there is any solution. Kind Regards Chichi ...

Android:How to display a Full Month Calendar Selector control?

Hi all, I want to incorporate a full month calendar selector like that of an iOS into my program. The one like this: However, it seem no one have come up with a control like that. Can i create a custom control like this and if yes, what is the best views to use for each date? a button view or a text view? I would really hope someone ...

duration and repeat

Hi all, I'm trying to put the logic together for this and it seems like I cant get no where. I have my repeat all set depending on week(s). But what about duration? Let's say someone is schedule for 2 days (duration) for every week (repeat). How would I put this together depending on two given dates? http://jsbin.com/usori3/15/edit ...

HTML in title string of fullcalendar jquery plugin

Hello, i think the fullcalendar jquery-plugin is a really great solution. i saw does the string for the title in the fullcalender plugin is escaped (htmlEscape). But i need to format some strings in the title for example bold text or colors, or small images? the solution with another plugin (for example qTip, like in the examples) wi...

Fullcalendar dayClick code fires only once: what am I doing wrong?

Hi there, I'm inserting events into a mysql table using jQuery's Dialog UI widget, and I'm stuck with only one insertion per dayClick. To insert another event I have to refresh the page :/ Here's the code `dayClick: function(date, allDay, jsEvent, view) { if (view.name=='month') { $('#calendar').fullCalendar( 'changeView', 'agen...

Repeat not consistent throughout months

By looking at the code I've provided below, does anyone know why the repeat is not consistent throughout each month? What I mean by this is for the first month that displays up until the end, the repeat works fine, then towards the end of the month onwards, the repeat is not displaying correctly. The output of the below code can be seen...

Fullcalendar not displaying events coming back from asp.net web service

Following the basic guildelines laid out in this blog (http://jake1164.blogspot.com/2010/06/jquery-fullcalendar-and-aspnet.html), i created an asp.net vb based web service that returns the following json data....however the calendar is not displaying any events. Any thoughts on what might be causing the issue ? thanks in advance. <?xml ...

Pulling Data for next/prev months

Hello, I am pulling my Fullcalendar data for the month that is being viewed. When I click on the Next/Prev Month view buttons it doesn't go out and fetch the new data for the new month. How do I get the Next/Prev buttons to make another call to the DB and pull records for that month? ...

How to remove an unsaved event?

I am using jquery and fullcalendar to schedule activities. When users select a timeslot, a form is shown on the right of the calendar where they can enter additional details. With the 'select' callback I render a temporary event on the calendar so my users will have visual feedback while filling out the form. However, when they have mi...

Remove Elements from fullcalendar (by dragging to trash can)

I have a fullcalendar with external elements being dragged onto it. I'm relatively new to jquery. I don't know quite how to get the ID of the object being dragged to a "trash can" icon. I simply want to drag items off of the calendar to a image and when I let go of the mouse the item is removed. This is my code..... <!DOCTYPE ht...

non Gregorian calendars with jquery fullcalendar

Hi all, Does anyone know how can one add a non Gregorian calendar support to jquery fullcalendar i don't know where to start the customization and what exact classes and scripts are affected by such a feature... i have implemented conversion script in js. I think that there isn't any built-in support. I'm looking for solution so that...