私はFullCalendarプラグインを使用しており、営業時間外にドラッグされたときに新しいイベントをドロップできないようにしています。私はそれを持っているので、現在の日付の前の任意の日付にドラッグすることはできませんが、週末がどのようにドラッグされるのかを理解できません。FullCalendarは営業時間外にイベントを削除しないようにします
営業時間を追加する場合は、特定の週に水曜日と午後1時から4時の間のみ許可すると何かが発生するため、if than文を週末専用にする必要があります。ですから、イベントのようにいくつかのJSONを渡すことができる動的ソリューションが必要です:ハンドルとビジネスHoursも同様に処理できます。そのイベントは制約が重複する場合fullcalendarは知らないとbusinessHours - ここ
$(document).ready(function() {
/* initialize the external events
-----------------------------------------------------------------*/
$('#external-events .fc-event').each(function() {
// store data so the calendar knows to render an event upon drop
$(this).data('event', {
title: $.trim($(this).text()), // use the element's text as the event title
stick: true // maintain when user navigates (see docs on the renderEvent method)
});
// make the event draggable using jQuery UI
$(this).draggable({
zIndex: 999,
revert: true, // will cause the event to go back to its
revertDuration: 0 // original position after the drag
});
});
/* initialize the calendar
-----------------------------------------------------------------*/
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
droppable: true, // this allows things to be dropped onto the calendar
drop: function() {
// is the "remove after drop" checkbox checked?
if ($('#drop-remove').is(':checked')) {
// if so, remove the element from the "Draggable Events" list
$(this).remove();
}
},
/* This constrains it to today or later */
eventConstraint: {
start: moment().format('YYYY-MM-DD'),
end: '2100-01-01' // hard coded must have
},
businessHours: {
start: moment().format('HH:mm'), /* Current Hour/Minute 24H format */
end: '17:00' // 5pm
}
});
});
は初期化されたイベントは期間を持っていないので、あなたが持っているhttp://jsfiddle.net/htexjtg6/
私は、特定の時間制限があったとしても、新しいイベントを日付にドラッグできるようにしたいという賞金の中で言及しました。おそらく、営業時間内に利用可能なリストの中で最も早いものまで時間をデフォルトする可能性があります。これはFullCalendarでは不可能で、毎日のビューにイベントを追加することしかできないのですか? – eqiz
@eqizあなたが正しく理解しているなら、それはフィドルで働いています。 – VisualBean
私は、賞金の月次見解でそれを行うことができるという言及について言及することを意味しました。私はあなたが言っていることは不可能であるということを意味していました。それは毎週ではなくイベントをドラッグして毎週または毎日のビューを使ってのみ行うことができますか? – eqiz