Interface RowItem<IdType>

A row in the table model.

interface RowItem<IdType> {
    columnValues: string[];
    datasetItemId: IdType;
    rawColumnValues: unknown[][];
}

Type Parameters

Properties

columnValues: string[]

The formatted column values of the row.

datasetItemId: IdType

Referenced data set item id.

rawColumnValues: unknown[][]

The raw field values of each column.

Generated using TypeDoc