Hi,
in order to use FullCalendar with a .Net backend, I had to add 2 lines of code for it to work, due to the "d" variable that .Net adds to the returned JSON data.
Around line 1482, I changed this:
success: function(events) {
events = events || [];
// FM 02/09/2014
if (events.d !== undefined)
events = events.d; // This makes it compatible with ASMX backends
var res = applyAll(success, this, arguments);
if ($.isArray(res)) {
events = res;
}
callback(events);
},
Would be nice for others if you added this too, as you wish...
Cheers
fred
Mergedinto: 2166