fullcalendar

How can I add line breaks into my event title in json

one thing i can not get straight is the ability to add html without it being escaped or actually creating new lines here's my json: { "id": 30, "title": "Basics \n Awesome Abs & Butt Blast \n Danielle B", "start": "2010-05-11T08:00:00-04:00", "end": "2010-05-11T08:30:00-04:00", "allDay": f...

Problem using fullcalendar AddEventSource

I am adding events via a coldfusion cfc, that supplies the data, in correct format, I believe. It successfully returns data, there are no javascript or jquery errors. I have a function that get's the data, upon clicking on a list of possible sources of data, I wish to display in the calendar. When I click it does load the data, but ...

fullcalendar not showing events

My setup is like this: Based on this example http://arshaw.com/js/fullcalendar/examples/json.html I tried to get my own fullcalendar application working. I replaced 'events: "json-events.php",' with 'events: "http://localhost:8080/CalendarServletTest/HelloWorldServlet",' and changed the dataType of fullcalendar to 'jsonp'. (The Servlet ...

Fullcalendar jquery plugin Show years on nextYear buttons

I'm using the fullcalendar jquery plugin, and would like to display 2009 and 2011 in the nextYear and prevYear buttons. For exmaple: 2009 May 2010 2011 I know I can put static text on the buttons like this: buttonText: { prevYear: '2009', nextYear: '2011' }, But I would like those years to change, depending on the year that the ca...

Drop custom jQuery UI draggable in FullCalendar plugin?

I need to be able to drop custom jQuery UI draggable objects on the FullCalendar plugin. How can this be done? $(document).ready(function() { $('.plannable_items li').draggable(); $('#fullcalendar').fullCalendar({ //onDrop : function(dropObject, dragObject) { } //This would be the solution ofcourse, however this doens't...

able to get the events in fullcalender, but not able to sync these events with time

i just loved the fullcalendar and wanted to implement it in a small application, everythin worked OK. i am able to get the events from my database through json to the front end. but all events are being listed as "ALL-DAY" events itself. not able to figure out why.. here is the screenshot for the same. any ideas what is going wrong..? i ...

FullCalendar not displaying time from JSON events

Greetings, Using FullCalendar (http://arshaw.com/fullcalendar/) to pull events from a MySQL database table via JSON. The events are being displayed in the calendar but for some reason it is ignoring the time (hours, minutes, seconds) of the event. Here is the Javascript from the calendar page - <script type='text/javascript'> $(d...

When creating an event from 12:00am to 12:30am it shows up as all day event

However if I change the time to 12:00am to 1:00am, it renders in the time slot and not as an all day event? Not sure whats going on! $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql'); mysql_select_db($dbname); $query = "select id,class_name,bridge,start_time,end_time from $table"; $results= mysql_que...

Are longest events always stacked first vertically in Fullcalendar?

I'm using fullcalendar and It seems like longest events are always stacked first. Is there a way to tweak this behaviour? Thanks in advance ...

Custom HTML in a day with FullCalendar?

Is there a way to add, specifically, form elements for every day that are distinguishable per day? Below is an example. I know FullCalendar is built to handle "Events", so from what I can tell in the docs, it's not really possible. But I'm not a Javascript guru either, so would anyone else know of a solution? I'm hoping to not have t...

fullcalendar : updating option function callbacks after init

Ok, so I have a problem with setting options whose values are callback functions when trying to set them after plugin initialization. I think this would be a common behavior, to dynamically set event callback after init'ing the calendar. Here is a snipit of code: $(document).ready(function() { $('#calendar').fullCalendar({ ed...

How to add Google Calendar Dynamically to jQuery FullCalendar?

I have seen how to add google calendar, but when I run it, it create's a new calendar, even though the selector I am using, refer's to an existing calendar. $calendar.fullCalendar({ events: $.fullCalendar.gcalFeed($feed_url.val()) }); I have other functions, that use renderEvents, but I am not sure how to use that ...

FullCalendar: Change agendaDay background-color..

While I have seen this question asked, I haven't seen the answer. Basically, 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 like to only color differently 10am to 3pm. This information would be coming fro...

Return Json causes save file dialog in asp.net mvc

Hi, I'm integrating jquery fullcalendar into my application. Here is the code i'm using: in index.aspx: <script type="text/javascript"> $(document).ready(function() { $('#calendar').fullCalendar({ events: "/Scheduler/CalendarData" }); }); </script> <div id="calendar"> </div> Here is the code for Sch...

Dragged external events from div overflow do not appear using FullCalender and FCDraggable

I am using the FCDraggable version of FullCalendar and everything is working well. However, I would like my external events to be contained in a div with an overflow (ex. JQuery UI Accordian) and dragged onto the calendar. When overflow is on, the external event gets hidden behind the calendar and does not appear until dropped onto the c...

FullCalendar with JQuery and Google Calendar

Hi, I have a problem with FullCalendar and Google Calendar. My FullCalendar does not show the Google entries. I need help, please :) <script type="text/javascript">// <![CDATA[ $(document).ready(function() { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); $('#calendar').f...

fullCalendar: Implementing a custom event fetcher using event as function

If I specify a json feed, the events are re-fetched everytime and the fetching time shows the item appearing which causes a delay which is undesirable (at least after initial fetch was done). I am using the latest version from gitHub 1.4.6. The lazyFetching property seems to only work when you change views and you previously fetched for ...

Fullcalendar limit the display of available months?

Hi, I would like to find out how can I limit the fullcalendar to show a three months period and deselectable for the rest of the months like within a datepicker? E.g. The current month is May 2010, I would only like the calendar to show May and Apr (on clicking of previous month), and Jun (on clicking on next month), the rest of the m...

Can i have drag and drop from jquey treeview to jquery fullcalendal

Hi I want that i should be able to drag items from jquery treeview that supports drag and drop.Drop item onto Jquery full calendar with database interaction ...

jquery Fullcalendar : dynamic events function asp.net mvc

Hi, I'm integrating Fullcalendar into my app. Consider a manager interface where he can select an employee and then view this employee's calendar. Now basically I'm using the following jquery code in my view: <script type="text/javascript"> $(document).ready(function() { $("#calendar").fullCalendar({ defaultView: '...