@universal-ember/table
    Preparing search index...

    Interface Column<T>


    Public Types


    interface Column<T = unknown> {
        config: ColumnConfig<T>;
        table: Table<T>;
        get Cell(): ComponentLike<CellContext<T>> | undefined;
        get key(): string;
        get name(): string | undefined;
        getDefaultValue(row: Row<T>): string;
        getOptionsForRow(row: Row<T>): { defaultValue: string };
        getValueForRow(row: Row<T>): ContentValue;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    config: ColumnConfig<T>
    table: Table<T>

    Accessors

    • get Cell(): ComponentLike<CellContext<T>> | undefined

      Returns ComponentLike<CellContext<T>> | undefined

    Methods

    • Parameters

      Returns { defaultValue: string }

      • defaultValue: string

        when no value is present for a given set of data for the given column config