fullcalendar在agendaDay上没有像agendaWeek那样显示相同的事件

时间:2012-08-17 17:25:57

标签: fullcalendar

我对javascript有非常基本的了解,并且在我的网站上设置了简单的FullCalendar。我正在使用agendaWeek作为我的主站点,但是我想在我的移动网站上使用agendaDay甚至basicDay,但是当我切换到agendaDay或basicDay时,它会在当天结束时切断事件,似乎是在下午5点过去。 (这是移动网站与主网站的实施:http://www.absolutemma.com/schedule.phphttp://www.absolutemma.com/mobile/schedule.html)以及我在移动网页上使用的javascript:

<script type='text/javascript'>
        $(document).ready(function() {

            // page is now ready, initialize the calendar...

            $('#calendar').fullCalendar({
                // put your options and callbacks here
                header: {
                },
                titleFormat: {
                    day: 'M/d/yyyy'   //whatever date format you want here
                },
            defaultView: 'agendaWeek',
            events: 'https://www.google.com/calendar/feeds/absolutemma%40gmail.com/public/basic',
            currentTimezone:'America/Denver',
            height: 750,
            minTime: 10,
            maxTime: 24
            })
        });
    </script>

我是否错过了一个回调来告诉agendaDay在一段时间后显示事件?在某处意外地说了一句话?

0 个答案:

没有答案
相关问题