showEventInfo()
Description
Shows an info popup for the event by its ID
Usage
showEventInfo({ id: string | number }): void;
Parameters
id
- (required) an ID of the event, the info popup will be opened for
Example
// create Event Calendar
const calendar = new eventCalendar.EventCalendar("#root", {
// initial configuration parameters
});
// open info popup for the event with the "1" ID
calendar.showEventInfo({ id: "1" });