如何在谷歌的FullCalendar中添加“时区列表”(下拉列表)?

时间:2014-02-24 11:54:03

标签: php jquery fullcalendar

作为google full Calendar API的新用户,我需要一些帮助...... 我想将时区的Dorpdown列表添加到fullCalendar中。从该列表中选择特定时区后,日历中的所有时间都必须按照所选时区进行转换。

我的jQuery代码:

jQuery('#calendar').fullCalendar({
    theme: false,
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'year,agendaDay,agendaWeek,month,prevYear,nextYear'
    },
    editable: false,
    events:<?php echo $event_str; ?>,
    ignoreTimezone: false
});

如果时区选择的逻辑错误,请建议我。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

得到了正在寻找的确切答案here

它出现在完整日历的新版本中。 希望我自己的答案会帮助别人。