Member Junction
    Preparing search index...

    Configuration for virtual scrolling behavior.

    const scrollConfig: VirtualScrollConfig = {
    enabled: true,
    batchSize: 25,
    loadThreshold: 300,
    showLoadingIndicator: true,
    loadingMessage: 'Loading more events...'
    };
    interface VirtualScrollConfig {
        batchSize: number;
        enabled: boolean;
        loadingMessage?: string;
        loadThreshold: number;
        showLoadingIndicator: boolean;
    }
    Index

    Properties

    batchSize: number

    Number of events to load per batch.

    20
    
    enabled: boolean

    Whether virtual scrolling is enabled. When disabled, all events load at once.

    true
    
    loadingMessage?: string

    Custom message to display while loading.

    'Loading more events...'
    
    loadThreshold: number

    Distance from bottom (in pixels) at which to trigger loading more.

    200
    
    showLoadingIndicator: boolean

    Whether to show a loading indicator while fetching.

    true