apex-grid
    Preparing search index...

    Interface ApexRowExpandedEvent<T>

    Event payload for the rowExpanded event.

    interface ApexRowExpandedEvent<T extends object> {
        added: T[];
        expanded: T[];
        removed: T[];
    }

    Type Parameters

    • T extends object
    Index

    Properties

    added: T[]

    The rows that became expanded in this change.

    expanded: T[]

    The full expansion set after the change has been applied.

    removed: T[]

    The rows that became collapsed in this change.