Issue 322: Unix Timestamp Not Displaying (Agenda Day View)
Status:  Done
Owner: ----
Closed:  Feb 2010
Reported by KyleRe...@gmail.com, Feb 3, 2010
Hey all, 

I'm using v1.4.3, any ideas on why my JSON events are not being displayed.
 My events are currently stored in MySQL as Unix Timestamps.  Here's what
the page is returning:

{"id":"440",
"start":1265659200,
"end":1265660100,
}

So, I would think that these Unix Times would display on the calendar. 
However, these are showing up as allDay events?

Any ideas?


Feb 4, 2010
#1 yiqiang%...@gtempaccount.com
start and end must be in date format 2010-02-10
Feb 5, 2010
#2 KyleRe...@gmail.com
Thanks for the reply.  I tried modifying my unix time to the following format:

{"id":"440","start":"2010-02-05T10:30:00","end":"2010-02-05T11:30:00"}

as well as

{"id":"440","start":"2010-02-05 10:30:00","end":"2010-02-05 11:30:00"}

But there are still showing up as "All Day" items in the Agenda Week View and Agenda
Day View.  

Any ideas what I may be doing wrong?
Feb 6, 2010
Project Member #3 adamrs...@gmail.com
allDay needs to be set to false for each event 
http://arshaw.com/fullcalendar/docs/event_data/Event_Object/
Status: Done
Feb 6, 2010
#4 KyleRe...@gmail.com
Thanks Adam, got it all squared away now.