Member Junction
    Preparing search index...

    Event emitted when a record should be opened (double-click or open button)

    interface RecordOpenedEvent {
        compositeKey: CompositeKey;
        entity: EntityInfo;
        record?: Record<string, unknown>;
    }
    Index

    Properties

    compositeKey: CompositeKey

    The composite key of the record

    entity: EntityInfo

    The entity metadata

    record?: Record<string, unknown>

    The record to open (may be undefined for FK navigation where record isn't loaded)