map.apps Bundle APIs 4.20.2
    Preparing search index...

    Interface RowItem<IdType>

    A row in the table model.

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

    Type Parameters

    Index

    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.