GroupingColumn

external interface GroupingColumn<TData : RowData>(source)

Inheritors

Properties

Link copied to clipboard
abstract var getAggregationFn: () -> AggregationFn<TData>

Returns the aggregation function for the column. API Docs Guide

Link copied to clipboard

Returns the automatically inferred aggregation function for the column. API Docs Guide

Link copied to clipboard
abstract var getCanGroup: () -> Boolean

Returns whether or not the column can be grouped. API Docs Guide

Link copied to clipboard
abstract var getGroupedIndex: () -> Int

Returns the index of the column in the grouping state. API Docs Guide

Link copied to clipboard
abstract var getIsGrouped: () -> Boolean

Returns whether or not the column is currently grouped. API Docs Guide

Link copied to clipboard
abstract var getToggleGroupingHandler: () -> () -> Unit

Returns a function that toggles the grouping state of the column. This is useful for passing to the onClick prop of a button. API Docs Guide

Link copied to clipboard
abstract var toggleGrouping: () -> Unit

Toggles the grouping state of the column. API Docs Guide