jQuery Event Calendar API
    Preparing search index...

    Core Class representing an isolated Event Calendar instance.

    Index
    • Changes the active localization language at runtime and refreshes the calendar view.

      Parameters

      • newLocale: string

        The new locale string (e.g., 'it-IT' or 'en-US').

      Returns void

    • Destroys the calendar instance, removes DOM structures, and unbinds all namespaced events.

      Returns void

    • Dynamically updates the dataset of the calendar without destroying the DOM structure. Optionally calculates and navigates directly to the first month containing events.

      Parameters

      • newEvents: IEvent[]

        The new array of events to render.

      • jumpToFirstMonth: boolean = true

        If true, automatically navigates the calendar view to the first available event month.

      Returns void

    • Displays a toast or error message inside the calendar loading container. If duration is less than or equal to 0, the message remains persistent (sticky) until explicitly cleared or replaced.

      Parameters

      • message: string

        The text message to display to the user.

      • duration: number = 3000

        For how long the message should be visible in milliseconds (default 3000ms). Pass 0 for persistent message.

      Returns void