net.ftlines.wicket.fullcalendar.FullCalendar.events.tpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-fullcalendar-core Show documentation
Show all versions of wicket-fullcalendar-core Show documentation
Provides a Wicket frontend to the FullCalendar JavaScript library
function(start, end, callback) {
$$.ajax({
url: '${url}',
dataType: 'json',
data: {
start: Math.round(start.getTime()),
end: Math.round(end.getTime()),
timezoneOffset: new Date().getTimezoneOffset(),
anticache: ""+new Date().getTime()+"."+Math.random()
},
headers: {
"Wicket-Ajax": true
},
success: function(events) {
callback(events);
}
});
}