Resizable column.

interface IResizableColumn {
    className: string;
    grow: number;
    id: ResizableColumn;
    itemClassName: string;
    minWidth: number;
    resizable: true;
}

Hierarchy

  • IBaseColumn
    • IResizableColumn

Properties

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.

resizable: true