โดยค่า Default ของ nextDayThreshold จะเป็น "09:00:00"
(9am)
เช่น เรากำหนด เวลา
start:“2017-08-17T08:00:00+07:00”
end:“2017-08-19T08:59:00+07:00“
ใน Calendar จะไฮไลท์สีจากวันที่ 17-18 เพราะว่าในวันที่ 19 เวลาไม่ได้เริ่มที่ 09:00:00 เป็นต้น
หากเราต้องการให้ เวลาเริ่มวันใหม่ที่ 00:00:01 ต้องกำหนด ใน nextDayThreshold ตามตัวอย่างด้านล่าง
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<script> $(document).ready(function() { // page is now ready, initialize the calendar... $('#calendar').fullCalendar({ locale: 'th', header: { left: 'prev,next today', center: 'title', right: 'month,agendaDay,agendaList30Day' }, views: { agendaList30Day: { type: 'list', duration: { days: 30 }, buttonText: '30 day' } }, defaultView: 'month', eventSources: [ // your event source { url: 'http://localhost/rents/feed', // use the `url` property color: 'yellow', // an option! textColor: 'black' // an option! } // any other sources... ], nextDayThreshold : "00:00:01", displayEventEnd:true, eventClick: function(event) { if (event.url) { window.open(event.url); return false; } } }); }); </script> |
ดูเพิ่มเติม : https://fullcalendar.io/docs/event_rendering/nextDayThreshold/
ป้ายกำกับ:fullCalendar