Member Junction
    Preparing search index...

    Interface SearchScopeChildGridColumn

    Declarative spec for a single grid column.

    interface SearchScopeChildGridColumn {
        Field: string;
        Label: string;
        LookupDisplayField?: string;
        LookupEntityName?: string;
        LookupFilter?: string;
        Options?: { Label: string; Value: string | number | boolean }[];
        Placeholder?: string;
        ReadOnly?: boolean;
        Type: SearchScopeChildGridColumnType;
        Width?: string;
    }
    Index

    Properties

    Field: string

    BaseEntity field name (e.g. 'SearchProviderID').

    Label: string

    Column header label.

    LookupDisplayField?: string

    For 'lookup': which field of the lookup entity is displayed. Defaults to 'Name'.

    LookupEntityName?: string

    For 'lookup': entity name whose rows populate the dropdown.

    LookupFilter?: string

    For 'lookup': optional ExtraFilter to constrain lookup rows.

    Options?: { Label: string; Value: string | number | boolean }[]

    For 'select': fixed option list.

    Placeholder?: string

    Placeholder text for empty cells.

    ReadOnly?: boolean

    True to make the cell read-only.

    Editor type.

    Width?: string

    CSS width (e.g. '140px').