フルカレンダーとグーグルカレンダーを同期していますが、週のビューで、日曜日の0:00から12:00までのイベントが欠落していることに気付きましたが、その日だけです。日表示に切り替えると、毎日発生します。
ここでバグを見ることができます:http ://www.kittikun.jp/schedule2.html
このページのソースは次のとおりです。
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
events: { url:"http://www.google.com/calendar/feeds/contact%40kittikun.jp/public/basic" },
theme: true,
header: {
left: 'today prev,next',
center: '',
right: 'month,agendaWeek,agendaDay'
},
allDaySlot: false,
timeFormat: "H:mm",
aspectRatio: 1,
lazyFetching: false,
firsthour: 0,
buttonIcons: {prev: 'circle-triangle-w'},
eventClick: function(calEvent, jsEvent, view) {
if (calEvent.description) {
var $dialog = $('<div></div>')
.html(calEvent.description)
.dialog({
title: calEvent.location,
modal: true,
width: 500
});
$dialog.dialog('open');
}
return false;
}
});
});
</script>
このフォーラムで検索した後、私はこのトピックを見つけました:
JQuery:FullCalendarプラグイン:イベントは週ビューと日ビューでは表示されませんが、月ビューでは表示されます
しかし、解決策は機能しませんでした
これを読んでくれてありがとう