All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.ftlines.wicket.fullcalendar.FullCalendar.events.tpl Maven / Gradle / Ivy

There is a newer version: 4.2
Show newest version
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);
        }
    });
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy