Member Junction
    Preparing search index...

    Represents a suggestion item for FK autocomplete search results.

    interface FKSuggestion {
        DisplayName: string;
        ExtraColumns: FKSuggestionColumn[];
        HighlightedName: string;
        Icon: string | null;
        PrimaryKeyValue: unknown;
    }
    Index

    Properties

    DisplayName: string

    The related entity's NameField value — the primary clickable label.

    ExtraColumns: FKSuggestionColumn[]

    Additional DefaultInView columns shown to the right of the name (multi-column rows).

    HighlightedName: string

    DisplayName with the typed query substring wrapped in a highlight mark. Bound to [innerHTML].

    Icon: string | null

    Leading icon for this row — a FontAwesome class. Per-row when the related entity has an ExtendedType = 'Icon' field; otherwise the entity-level icon; null when neither exists.

    PrimaryKeyValue: unknown

    Primary-key value used as the FK value when selected.