アム経由してイベントを追加します基本的に私がこれまで行ってきたこと。あなたが見ることができるように、私はそれが動作しているPHPページにデータを送信しているが、私はプロンプトボックスに満足していないだけでなく、彼らは同様にノートを追加することができる素敵なフォームになりたい。完全なカレンダーは、私は、ユーザーがfullcalendar</p> <p>の黒い部分をクリックしたときに、これは、ユーザーがポップアップするようだ代わりにpromotボックスのフォームに必要事項を記入できるようにすることができますどのように思っていないpromot
select: function(start, end, allDay) {
var title = prompt('Event Title:');
if (title) {
calendar.fullCalendar('renderEvent',
{
title: title,
start: start,
end: end,
allDay: allDay,
},
true // make the event "stick"
);
year = new Date(start).getFullYear();
month = new Date(start).getMonth()+1;
month = ((month < 10) ? '0' : '') + month;
day = ((new Date(start).getDate() < 10) ? '0' : '') + new Date(start).getDate();
hours = ((new Date(start).getHours() < 10) ? '0' : '') + new Date(start).getHours();
min = ((new Date(start).getMinutes() < 10) ? '0' : '') + new Date(start).getMinutes();
sec = ((new Date(start).getSeconds() < 10) ? '0' : '') + new Date(start).getSeconds();
start = year + '-' + month + '-' + day +' '+hours+':'+min+':'+sec;
year = new Date(end).getFullYear();
month = new Date(end).getMonth()+1;
month = ((month < 10) ? '0' : '') + month;
day = ((new Date(end).getDate() < 10) ? '0' : '') + new Date(end).getDate();
hours = ((new Date(end).getHours() < 10) ? '0' : '') + new Date(end).getHours();
min = ((new Date(end).getMinutes() < 10) ? '0' : '') + new Date(end).getMinutes();
sec = ((new Date(end).getSeconds() < 10) ? '0' : '') + new Date(end).getSeconds();
end = year + '-' + month + '-' + day +' '+hours+':'+min+':'+sec;
//alert(start+' - '+end);
$.get("system/classes/core.php?task=calendar&q=addnew&userid="+userid+"&title="+title+"&start="+start+"&end="+end+"&allDay="+allDay, function(data) {
alert(title + ' was created for '+ start +' '+ end);
});
}
calendar.fullCalendar('unselect');
},
助けてくれてありがとう、正しい方向に私を入れてください – RussellHarrower
1つの小さな問題は、開始時間と終了時間を送信しないか、1日の終わりのイベントを送信しないことです – RussellHarrower
投稿要求に追加する必要があります、start:start、end:end、およびallDay:allDay。 –