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

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

function(start, end, callback) {

    Wicket.Ajax.ajax({
        "u": "${url}",
        "dt": "json",
        "wr":  false,
        "ep": {
            "start": Math.round(start.getTime()),
            "end": Math.round(end.getTime()),
            "timezoneOffset": new Date().getTimezoneOffset(),
            "anticache": ""+new Date().getTime()+"."+Math.random()
        },
        "sh": [function(data, textStatus, jqXHR, attrs) { callback(jqXHR) }]
    });
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy