Type Alias ClndrItemEventParameters

ClndrItemEventParameters: {
    date?: Date;
    element: HTMLElement;
    events: ClndrEvent[];
    isToday: boolean;
    selectedDateChanged: boolean;
    view: View;
}

Type declaration

  • Optionaldate?: Date

    The date clicked on; not necessarily provided, since it might be an empty placeholder element that was clicked on.

  • element: HTMLElement

    The element clicked on.

  • events: ClndrEvent[]

    The events on the date being clicked as provided by the events option.

  • isToday: boolean

    Whether the calendar item clicked is or contains today.

  • selectedDateChanged: boolean

    Whether the clicked triggered changing the selected date, if the trackSelectedDate option is activated.

  • view: View

    The origin view of the event.

""