Engine API Reference - v2.23.0-beta.7
    Preparing search index...

    Interface ListRow

    interface ListRow {
        cells: ListCell[];
        dim?: boolean;
        indent?: number;
        item: any;
        key: string;
        name: string;
        title?: string;
    }
    Index
    cells: ListCell[]

    The cells, left to right.

    dim?: boolean

    Whether the row is shown dimmed.

    indent?: number

    The indentation level.

    item: any

    The subject selected when the row is clicked.

    key: string

    A key unique within the list, stable across refreshes.

    name: string

    The text the filter matches against.

    title?: string

    A tooltip for the whole row.