Represents a slot for a body row in a table.

interface IBodyRowSlot<RowData extends IRowData = IAnything> {
    columns: BodyColumn<RowData>[];
    disabled: boolean;
    fullWidth: number;
    mode: DisplayMode;
    row: RowData;
}

Type Parameters

Properties

columns: BodyColumn<RowData>[]

Represents an array of body columns.

The type of data stored in the rows of the column.

@@iterator - Returns a new Iterator object that can be used to iterate over each column in the array.

disabled: boolean
fullWidth: number
row: RowData