Member Junction
    Preparing search index...

    Column definition for the grid view

    interface GridColumnDef {
        cellRenderer?: string;
        field: string;
        filter?: boolean;
        headerName: string;
        hide?: boolean;
        maxWidth?: number;
        minWidth?: number;
        resizable?: boolean;
        sortable?: boolean;
        valueFormatter?: string;
        width?: number;
    }
    Index

    Properties

    cellRenderer?: string

    Custom cell renderer type

    field: string

    Field name from the entity

    filter?: boolean

    Whether column is filterable

    headerName: string

    Column header text

    hide?: boolean

    Whether to hide this column

    maxWidth?: number

    Maximum column width

    minWidth?: number

    Minimum column width

    resizable?: boolean

    Whether column is resizable

    sortable?: boolean

    Whether column is sortable

    valueFormatter?: string

    Value formatter function name

    width?: number

    Column width in pixels