Arguments for the afterScrollLoadMore event. Emitted after virtual scroll load completes.

interface AfterScrollLoadMoreArgs {
    clientHeight: number;
    distanceFromBottom: number;
    errorMessage?: string;
    eventsLoaded: number;
    scrollHeight: number;
    scrollTop: number;
    success: boolean;
}

Hierarchy (view full)

Properties

clientHeight: number

Visible viewport height.

distanceFromBottom: number

Distance from bottom (pixels).

errorMessage?: string

Error message if the operation failed. Only populated when success is false.

eventsLoaded: number

Number of new events loaded.

scrollHeight: number

Total scrollable height.

scrollTop: number

Current scroll position (pixels from top).

success: boolean

Whether the operation completed successfully. Will be false if an error occurred during the operation.