apex-grid
    Preparing search index...

    Interface ApexTreeRowExpandedEvent<T>

    Event payload for the treeRowExpanded event.

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

    Type Parameters

    • T extends object
    Index

    Properties

    added: T[]

    Rows that became expanded in this change.

    expanded: T[]

    The full tree-expansion set after the change has been applied.

    removed: T[]

    Rows that became collapsed in this change.