Skip to content

ColumnGroupInfo

Since v1.15.0

Column grouping info returned by the getColumnGrouping plugin query. Plugins like GroupingColumnsPlugin respond with this to describe how columns are organized into groups for the visibility panel.

Important: This type describes group membership — which fields belong to which group. For authoritative display order, use grid.getAllColumns() or grid.getColumnOrder() from the ConfigManager, which reflects the current column positions after any reordering.

PropertyTypeDescription
idstringUnique group identifier
labelstringDisplay label for the group
fieldsstring[]Column field names belonging to this group.

Column field names belonging to this group.

The order of fields is best-effort (sorted by current display order when available), but consumers should not rely on it for rendering. Use grid.getAllColumns() for authoritative display order and filter by group membership using this array.