2
正しい場所にいない提示されている私は が、私は.. のフルカレンダー搭載のEventSource、日数が
eventSources:
[
// your event source
{
url: '/ajax-load-holidaysExtra',// use the `url` property
type: 'POST',
datatype: "JSON",
data : function()
{ // a function that returns an object
var date = new Date($('#calendar1').fullCalendar('getDate'));
month_integer = date.getMonth();
year_integer = date.getFullYear();
return {
month: month_integer,
year: year_integer
}
},
error: function() {
alert('there was an error while fetching eventsin hol!');
},
color: 'rgba(244, 221, 38, 0.20)', // a non-ajax option
textColor: 'blue' // a non-ajax option
}
],
としてデータを取得するが、私はその日を取得し、Ajax呼び出しを通じてのEventSourceにデータをロードしますカレンダーに表示されているものが正しくない場合は、イベントソースから取得する予定の日付の1日または2日前の日付が表示されます。
私は完全なカレンダーに新しくなりました。感謝します