LyteNyte Grid allows you to group rows by one or more columns using the rowGroupModel
property.
This property accepts an array of column id
strings, where each represents a groupable column.
The rowGroupModel
determines how the grid groups your data. Each item in the model creates a
group level, resulting in special group rows that can have child rows. This creates a tree-like
view of your data within the grid.
Your row data source determines the outcome of row grouping. The Core
edition simply groups
rows by the rowGroupField
or field
property of columns in the row group model.
If you use the Enterprise
edition, row groups are created by your chosen data source. The
Client Row Data Source works similarly to the Core
edition.
The Server Row Data Source depends on your server implementation
to determine row grouping.
To include a column in the grid's rowGroupModel
, mark it as groupable by setting the
rowGroupable
property to true
.
Use the rowGroupField
property to group a column by a different key than its field property.
This helps when you need to map between a column's value and a grouping key.
When you apply row groups, LyteNyte Grid creates additional columns for these groups. The
rowGroupDisplayMode
property controls how these group columns appear.
Set rowGroupDisplayMode
to "single-column"
to create one group column that expands and
collapses row groups. This is the default option and uses space efficiently.
Set rowGroupDisplayMode
to "multi-column"
to create one group column for each item in your
row group model.
Set rowGroupDisplayMode
to "custom"
when you want to provide your own column for expanding
or collapsing row groups. LyteNyte Grid won't create a group column automatically.
Use the rowGroupColumnTemplate
property to customize group columns. This property offers a
simplified version of column configurations that LyteNyte Grid uses when creating group columns.
LyteNyte Grid provides helpful API methods for custom group columns:
rowGroupToggle
to toggle a row group's expansion staterowGroupIsExpanded
to check if a group row is expandedThe rowGroupExpansions
property tracks which row groups are expanded, determining when the
grid displays children of a row group.
This property only contains values for some row groups. For groups not listed in expansions,
the grid uses the rowGroupDefaultExpansion
property. You can set this property to:
The depth refers to the position of the grouping in the row group model.