apex-grid
    Preparing search index...

    Interface ApexRowSelectingEvent<T>

    Event payload for the cancellable rowSelecting event.

    interface ApexRowSelectingEvent<T extends object> {
        added: T[];
        current: T[];
        next: T[];
        removed: T[];
    }

    Type Parameters

    • T extends object
    Index

    Properties

    added: T[]

    The rows that will become selected by this change.

    current: T[]

    The full current selection before this change is applied.

    next: T[]

    The full selection after this change would be applied. Listeners can inspect this to decide whether to cancel.

    removed: T[]

    The rows that will become deselected by this change.