Interface TableColumn

interface TableColumn {
    align?: TableColumnAlign;
    editable?: boolean;
    expanded?: boolean;
    factSheetType: string;
    isCustomColumn?: boolean;
    isRelationColumn?: boolean;
    key: string;
    label?: string;
    movable?: boolean;
    required?: boolean;
    resizable?: boolean;
    sort?: string;
    sortable?: boolean;
    type: DataModelFieldType;
    virtualKey?: string;
    width?: number;
}

Properties

editable?: boolean
expanded?: boolean
factSheetType: string
isCustomColumn?: boolean
isRelationColumn?: boolean
key: string
label?: string
movable?: boolean
required?: boolean
resizable?: boolean
sort?: string

Frontend attributes

sortable?: boolean

Field type

virtualKey?: string
width?: number

Generated using TypeDoc