Skip to main content

close-event-info

Description

Fires when closing an event info popup window

Usage

"close-event-info": () => void;

Parameters

The callback of the close-event-info event doesn't take any parameters!

info

For handling the inner events of Event Calendar you can use the Event Bus methods

Example

// create Event Calendar
const calendar = new eventCalendar.EventCalendar("#root", {
// configuration parameters
});
// subscribe on the "close-event-info" event
calendar.api.on("close-event-info", () => {
console.log("The event info popup is closed!");
});