I've been using fullCalendar for a while and getting data via json. there is a sample listed below.
[{"id":2,"name":"1","title":"takvim","start":"2009-11-04","end":"2009-11-04"}]
it works fine but I upgraded the new version of the calendar and it has agenda-week view. I need to use grid area(hours there) on agenda-week so my json must be like this.
[{"id":2,"name":"1","title":"takvim","start":"2009-11-04 12:30:00","end":"2009-11-04 13:30:00"}]
In addition if I used the data as static I could use it like this
{ title: 'Meeting', start: new Date(y, m, d, 10, 30), allDay: false }
Unfortunately there is no data to appear when i add time. How do i solve it?
Thank you.