fullcalendar

Events not getting rendered with JSON feed.

I am trying to use a JSON feed to render events in fullCalendar. Here is the code. $('#calendar').fullCalendar({ editable : true, selectable : true, select : selectionMade, eventResize : eventsChanged, eventDrop : eventsChanged, selectable : tru...

Rendering fullcalendar in wkthmltopdf generated document in ruby on rails app

Calendar in our app is displayed using Fullcalendar plugin by arshaw Here it is: http://avatara.su/calendar There is a need to export this page to pdf. I always used PDFkit gem to do this, but with fullcalendar it doesn't work. It just renders an empty calendar grid, without rendered events. I tried to set 10 seconds for wkhtmltopdf t...

How do I properly load the jQuery fullcalendar plugin in a hidden div

I'm using the jQuery tools tabs to divide my page into tabs. One of those tabs contain a jQuery Fullcalendar. Because I load JavaScript last in the page for speed and to avoid flash of unstyled content, I hide the initially unseen tabs using display:none. When doing this, the fullcalendar doesn't render properly. It shows the proper butt...

How to make individual events editable?

Hi all, Is there any way to make individual events editable as opposed to making the entire events array editable? Thanks, Shruthi ...

How does one go about reading the options from a fullcalendar object

I'm creating multiple fullcalendar's on a single page and i would like to write a single event render callback such that it can read the options from the fullcalendar instance that it is called from/in, things like minTime and maxTime, not sure how to do this. ...