I looked at the FullCalendar documentation.
From what I collect, the calendar captures data from the source by going to its url with start and end parameters and waiting for json in return. This is good, examples show that.
However, it is not clear how the update works.
Take for example the drop event http://arshaw.com/fullcalendar/docs/event_ui/eventDrop/
How can I deal with this in terms of updating my database. Should I make an ajax call to Update.aspx?id=event.id....
Is this how I should do my updates?
Also, I'm curious about func return. There are two reasons why I want: If my ajax call fails, if my ajax call returns db update failed. How can I pass revert
func to say
: success(data) { }
Which would be great if anyone has an example with ajax calls in every required event. I have nothing to do with the servers, I just do not understand what needs to be updated, with what ajax calls I have to make on my site.
thanks
source share