Is there a way to change the name of the id field that fullCalendar uses? Like this:
$('myCal').fullCalendar('option', 'idField', 'myCustomIdField').
Or like this:
$('myCal').fullCalendar('option', 'idFunction', function(event){
return "prefix_" + event.id;
}).
thanks for advice