calendar icon indicating copy to clipboard operation
calendar copied to clipboard

Adding on_draw_events callback

Open sanchezfauste opened this issue 3 years ago • 0 comments

Adding on_draw_events callback. This function is called when calendar is redrawed.

$(".fiscal-calendar-div").zabuto_calendar({
    language: "es", 
    today: true,
    ajax: {
        url: "/get_events",
        modal: false
    },
    on_draw_events: function(events) {
        console.log(events)
    }
});

sanchezfauste avatar Feb 02 '22 11:02 sanchezfauste