Sortable column.

interface ISortableColumn {
    caretSide: "left" | "right";
    className: string;
    grow: number;
    id: SortableColumn;
    itemClassName: string;
    minWidth: number;
    sortable: true;
}

Hierarchy

  • IBaseColumn
    • ISortableColumn

Properties

caretSide: "left" | "right"
className: string

Name of the header class, must be unique among other columns.

grow: number

Unitless number representing the proportion by which the column should grow when the listing is resized.

itemClassName: string

Name of the item class, must be unique among other columns.

minWidth: number

Minimum size the column should occupy.

sortable: true