Fullcalendar - not showing time of events

Fullcalendar - not showing time of events

I'm developing a list of scheduled events using Fullcalendar, and everything is working fine, except it thinks every event is an all day event.

The code is as follows:
  1. <script type='text/javascript'>
  2.         
  3.         $(document).ready(function() {
  4.             $('#calendar').fullCalendar({
  5.                 showAgendaButton: true,
  6.                 columnFormat: { month: 'ddd', week: 'ddd d/M', day: 'dddd d/M' },
  7.                 timeFormat: 'H:mm',
  8.                 axisFormat: 'H:mm',
  9.                 header: {
  10.     left: 'prev,next today',
  11.     center: 'title',
  12.     right: 'month,agendaWeek,agendaDay'
  13.     },
  14.                 editable: true,
  15.                 events: '/ajax/scheduled-messages.php'
  16.             });                 
  17.         });        
  18.         </script>
  19.         <div id="calendar"></div>
And the returned json is:
  1. [
  2.       {
  3.             id: "111785373",
  4.             title"Meet with bob
    ",
  5.             start: "1359561600",
  6.             allday: false
  7.       }
  8. ]
What it shows is purely "Meet with Bob", and when you got to a week or day view, it shows the event as allday....

What have I configured wrongly?!

Thanks
Nunners
    • Topic Participants

    • james