tags:

views:

31

answers:

1

Like others I'm having problems getting timed events to show up on the agendaWeek view. If you look at the events below, the first two are mine and show up as all day events. The last one is from the documentation and shows up in the correct time block. I've been staring at this so long I'm sure I'm missing something simple. Can anyone else see it?

    $(document).ready(function() {
        $("#calendar").fullCalendar({
            defaultView: 'agendaWeek',
            month:0,//current year assumed, first day of month assumed
            date: 4,
            height: 650,
            header: {left: 'title',center:'agendaWeek'},
            events: [

                        {
                          title : 'Fred',
                          start : '2010-01-04 08:00:00',
                          end   : '2010-01-04 09:00:00',
                          allday : false
                        },
                        {
                          title : 'Betty',
                          start : '2010-01-06 08:00:00',
                          allday : false
                        },

                        {
                            title  : 'event3',
                            start  : '2010-01-05 12:30:00',
                            allDay : false // will make the time show
                        }


                    ]       

                });

                });
</script>
A: 

allday sb allDay

Lee Hinde
did the change from allday -> allDay fix your problem?
arshaw
Yes, thanks for checking and thanks for the tool.
Lee Hinde