Member Junction
    Preparing search index...

    Event emitted when a foreign key link is clicked in the grid. The parent component should handle navigation to the related record.

    interface ForeignKeyClickEvent {
        fieldName: string;
        recordId: string;
        relatedEntityId: string;
        relatedEntityName?: string;
    }
    Index

    Properties

    fieldName: string

    The field name that was clicked

    recordId: string

    The ID of the related record (the FK value)

    relatedEntityId: string

    The ID of the related entity (from EntityFieldInfo.RelatedEntityID)

    relatedEntityName?: string

    The entity name of the related entity (if available)