1
fullcalendar scheduler.jsでイベントを追加する方法がわかりません。だれでも助けてくれますか?scheduler.jsでfullcalendarでイベントを追加するには?
fullcalendarでイベントを追加できますが、動作するscheduler.jsはありません。私は私のスクリプトにこのコードを追加すると
イベントは、あなたがリソースをロードし、同様にあなたのイベントにあなたのリソースIDを指定する必要が
select: function(start, end)
{
this.title = prompt('Event Title:');
this.eventData;
if (this.title) {
this.eventData = {
title: this.title,
start: start,
end: end
};
$('#calendar').fullCalendar('renderEvent', this.eventData, true); // stick? = true
}
$('#calendar').fullCalendar('unselect');
},