GridConfig: {
    __attributes?: Record<string, Attribute>;
    __columnCells?: number;
    __leftWidth?: number;
    __rightWidth?: number;
    __rowHeaderHeight?: number;
    __rowHeight?: number;
    __scrollbarSize?: number;
    __selectSizeWidth?: number;
    attributes: Attribute[];
    cellHeaderLabelHeight?: number;
    cellHeight?: number;
    columnsCenter: Columns[];
    columnsPinnedLeft?: Columns[];
    columnsPinnedRight?: Columns[];
    datePickerConfig?: IDateConfig;
    expandedGroups?: string[];
    filter?: FilterArgument;
    footerHeight?: number;
    grouping?: GroupArgument[];
    hideFilter?: boolean;
    hideLabels?: boolean;
    panelHeight?: number;
    placeHolderRowCurrentEnityOnly?: boolean;
    readonly?: boolean;
    selectionMode?: "multiple" | "single";
    selectSizeHeight?: number;
    sorting?: Sort[];
}

Type declaration

  • Optional Internal__attributes?: Record<string, Attribute>

    not exported in save config

  • Optional Internal__columnCells?: number

    not exported in save config

  • Optional Internal__leftWidth?: number

    not exported in save config

  • Optional Internal__rightWidth?: number

    not exported in save config

  • Optional Internal__rowHeaderHeight?: number

    not exported in save config

  • Optional Internal__rowHeight?: number

    not exported in save config

  • Optional Internal__scrollbarSize?: number

    not exported in save config

  • Optional Internal__selectSizeWidth?: number

    not exported in save config

  • attributes: Attribute[]
  • OptionalcellHeaderLabelHeight?: number

    useful for when you have long header text and need to wrap in in 2-3 height this will not work well with auto resize

  • OptionalcellHeight?: number
  • columnsCenter: Columns[]
  • OptionalcolumnsPinnedLeft?: Columns[]
  • OptionalcolumnsPinnedRight?: Columns[]
  • OptionaldatePickerConfig?: IDateConfig

    datepicker not all is passed on to intenal picker

  • OptionalexpandedGroups?: string[]

    expandedGroups added when loading config

  • Optionalfilter?: FilterArgument

    filter added when loading config

  • OptionalfooterHeight?: number
  • Optionalgrouping?: GroupArgument[]

    grouping added when loading config

  • OptionalhideFilter?: boolean
  • OptionalhideLabels?: boolean
  • OptionalpanelHeight?: number
  • OptionalplaceHolderRowCurrentEnityOnly?: boolean

    displays only placeholder on current focused cell row/current entity row default = true, so you need to set this to false to display on all rows

  • Optionalreadonly?: boolean
  • OptionalselectionMode?: "multiple" | "single"
  • OptionalselectSizeHeight?: number
  • Optionalsorting?: Sort[]

    sorting added when loading config, unless grouping overrides it