AccessorKeyColumnDefBase

Properties

Link copied to clipboard
abstract var accessorKey: String
Link copied to clipboard

The cell to display each row for the column if the cell is an aggregate. If a function is passed, it will be passed a props object with the context of the cell and should return the property type for your adapter (the exact type depends on the adapter being used). API Docs Guide

Link copied to clipboard

The resolved aggregation function for the column. API Docs Guide

Link copied to clipboard
Link copied to clipboard

Enables/disables the column filter for this column. API Docs Guide

Link copied to clipboard

Enables/disables the global filter for this column. API Docs Guide

Link copied to clipboard
abstract var enableGrouping: Boolean?

Enables/disables grouping for this column. API Docs Guide

Link copied to clipboard
abstract var enableHiding: Boolean?
Link copied to clipboard
abstract var enableMultiSort: Boolean?

Enables/Disables multi-sorting for this column. API Docs Guide

Link copied to clipboard
abstract var enablePinning: Boolean?

Enables/disables column pinning for this column. Defaults to true. API Docs Guide

Link copied to clipboard
abstract var enableResizing: Boolean?

Enables or disables column resizing for the column. API Docs Guide

Link copied to clipboard
abstract var enableSorting: Boolean?

Enables/Disables sorting for this column. API Docs Guide

Link copied to clipboard
abstract var filterFn: FilterFnOption<TData>?

The filter function to use with this column. Can be the name of a built-in filter function or a custom filter function. API Docs Guide

Link copied to clipboard
Link copied to clipboard
abstract var getGroupingValue: (row: TData) -> Any?

Specify a value to be used for grouping rows on this column. If this option is not specified, the value derived from accessorKey / accessorFn will be used instead. API Docs Guide

Link copied to clipboard
Link copied to clipboard
abstract var invertSorting: Boolean?

Inverts the order of the sorting for this column. This is useful for values that have an inverted best/worst scale where lower numbers are better, eg. a ranking (1st, 2nd, 3rd) or golf-like scoring API Docs Guide

Link copied to clipboard
abstract var maxSize: Int?

The maximum allowed size for the column API Docs Guide

Link copied to clipboard
abstract var meta: ColumnMeta<TData, TValue>?
Link copied to clipboard
abstract var minSize: Int?

The minimum allowed size for the column API Docs Guide

Link copied to clipboard
abstract var size: Int?

The desired size for the column API Docs Guide

Link copied to clipboard
abstract var sortDescFirst: Boolean?

Set to true for sorting toggles on this column to start in the descending direction. API Docs Guide

Link copied to clipboard

The sorting function to use with this column.

Link copied to clipboard
abstract var sortUndefined: Comparable<*>?

The priority of undefined values when sorting this column.