jQuery Event Calendar API
    Preparing search index...

    Interface IEvent

    Represents a single event object to be rendered on the calendar.

    interface IEvent {
        date?: string | number;
        description?: string;
        isLocked?: boolean;
        isSpecial?: boolean;
        offset?: number;
        title?: string;
        url?: string;
    }
    Index
    date?: string | number

    Date of the event. Can be a Unix timestamp (in milliseconds) or a formatted string. The expected format depends on the jsonDateFormat option.

    undefined
    
    description?: string
    isLocked?: boolean

    Indicates if the event is locked (typically displays a padlock or cross icon).

    false
    
    isSpecial?: boolean

    Indicates if the event is special (typically displays an exclamation mark or star icon).

    false
    
    offset?: number

    Optional offset for the event date calculation (in minutes). Used to handle specific timezones for individual events.

    undefined
    
    title?: string
    url?: string