Monday, May 20, 2024
73
rated 0 times [  79] [ 6]  / answers: 1 / hits: 43189  / 10 Years ago, wed, december 10, 2014, 12:00:00

I am making a fullCalendar backed car reservation functionality.
This is the coffescript file.



    updateEvent = (event, delta, revertFunc) ->
$.ajax
type: PUT
dataType: json
success: (data) ->
alert Success
error: (data) ->
revertFunc()
errors = data.responseJSON.reservations[0][1]
for message of errors
alert errors[message]
url: event.updateUrl
data:
reservation:
reservation_start: event.start.format('DD-MM-YYYY')
reservation_end: event.end.format('DD-MM-YYYY')
transport_id: event.transport_id
user_id: event.user_id

$(document).ready ->
$(.calendar).fullCalendar
events: gon.path
eventDrop: updateEvent
eventResize: updateEvent


And this is JSON feed with the events.



[{start:2014-12-17T00:00:00.000Z,end:2014-12-21T00:00:00.000Z,title:Cassio Godinho,url:/reservas/44/edit,allDay:true,editable:true,updateUrl:/reservation/44,transport_id:1,user_id:1}]


The end date is 2014-12-21 but this is what I have on the calendar enter



The documentation says something about this (I think):



endParam
It is the moment immediately after the event has ended. For example, if the last full day of an event is Thursday, the exclusive end of the event will be 00:00:00 on Friday!


But im not quite sure what to do with this information...


More From » fullcalendar

 Answers
9

I think the key word in the directions is exclusive so whatever time you specify will not be included in the date range.



So in your case 2014-12-21T00:00:00.000Z would mean that the event would no longer exists at the very beginning of 12-21. If you want the event to go through 12-21 you'd want to set the end time to 2014-12-22T00:00:00.000 (first possible time in 12-22).


[#68520] Monday, December 8, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
micayla

Total Points: 148
Total Questions: 92
Total Answers: 109

Location: Aruba
Member since Sat, Oct 2, 2021
3 Years ago
micayla questions
Fri, Dec 24, 21, 00:00, 2 Years ago
Thu, Apr 16, 20, 00:00, 4 Years ago
Thu, Nov 14, 19, 00:00, 5 Years ago
;