React Grid Group By
The Ignite UI for React Group By behavior in React IgrGrid creates grouped data rows based on the column values. The Group By in the IgrGrid
allows for visualizing the groups in a hierarchical structure. The grouped data rows can be expanded or collapsed and the order of grouping may be changed through the UI or API. When Row Selection is enabled, a Group By row selector is rendered in the left-most area of the group row. In case the rowSelection
property is set to single, checkboxes are disabled and only serve as an indication for the group where selection is placed. If the rowSelection
property is set to multiple, clicking over the Group By row selector selects all records belonging to this group.
React Grid Group By Example
This example presents the grouping capabilities of a large amount of data. Dragging the column headers to the top (grouping area) allows users to see the data for the selected column in a hierarchical structure. They can do group by in multiple fields by dragging more column headers to the top. These grouping options come in handy when you have tables with numerous rows and columns where users want to present the data in a much faster and visually acceptable way.
Initial Grouping State
It is possible to define initial grouping of the grid by assigning an array of expressions to the groupingExpressions
property of the grid.
const expressions = [
{ fieldName: 'ProductName', dir: SortingDirection.Desc },
{ fieldName: 'Released', dir: SortingDirection.Desc }
];
function App() {
const grid1Ref = useRef();
return (
<>
<IgrGrid
autoGenerate="true"
groupingExpressions={expressions}
ref={grid1Ref}>
</IgrGrid>
</>
)
}
Grouping expressions implement the ISortingExpression
interface.
Group By API
Grouping API
Grouping is available through the UI and through a robust API exposed by the grid component. Developers can allow end-users to group the grid data by certain columns, by setting each column's Groupable
property to true
.
function App() {
const gridRef = useRef();
return (
<>
<IgrGrid
autoGenerate="false"
ref={gridRef}
>
<IgrColumn field="OrderID" hidden="true"></IgrColumn>
<IgrColumn field="ShipCountry" header="Ship Country" width="200px" groupable="true"></IgrColumn>
<IgrColumn field="OrderDate" header="Order Date" dataType="date" width="200px" groupable="true"></IgrColumn>
<IgrColumn field="PostalCode" header="Postal Code" width="200px" groupable="true"></IgrColumn>
<IgrColumn field="Discontinued" width="200px" dataType="boolean" groupable="true"></IgrColumn>
<IgrColumn field="ShipName" header="Ship Name" width="200px" groupable="false"></IgrColumn>
<IgrColumn field="ShipCity" header="Ship City" width="200px" groupable="false"></IgrColumn>
<IgrColumn field="ShipperName" header="Shipper Name" width="200px" groupable="true"></IgrColumn>
<IgrColumn field="Salesperson" header="Sales Person" width="200px" groupable="true"></IgrColumn>
<IgrColumn field="UnitPrice" header="Unit Price" width="200px" groupable="true"></IgrColumn>
<IgrColumn field="Quantity" width="200px" groupable="true"></IgrColumn>
</IgrGrid>
</>
)
}
During runtime the expressions are gettable and settable from the groupingExpressions
property. If you need to add or change an existing expression you may also use the groupBy
method with either a single or an array of expressions.
gridRef.current.groupBy([{ fieldName: 'ProductName', dir: SortingDirection.Desc, ignoreCase: true }]);
Expand/Collapse API
In addition to grouping expressions you can also control the expansion states for group rows. They are stored in a separate property of the IgrGrid
component groupingExpansionState
which is a collection of IgrGroupByExpandState
. Each expansion state is uniquely defined by the field name it is created for and the value it represents for each level of grouping, i.e. the identifier is a hierarchy array of IgrGroupByKey
.
As with groupingExpressions
, setting a list of IgrGroupByExpandState
directly to the groupingExpansionState
will change the expansion accordingly. Additionally IgrGrid
exposes a method toggleGroup
that toggles a group by the group record instance or via the expanded
property of the row.
const groupRow = gridRef.current.getRowByIndex(0).groupRow;
gridRef.current.toggleGroup(groupRow);
const groupRow = gridRef.current.getRowByIndex(0);
groupRow.expanded = false;
Groups can be created expanded (default) or collapsed and the expansion states would generally only contain the state opposite to the default behavior. You can control whether groups should be created expanded or not through the groupsExpanded
property.
Select/Deselect All Rows in a Group API
Selecting/Deselecting all rows in a group is available through the selectRowsInGroup
and deselectRowsInGroup
API methods.
The code snippet below can be used to select all rows within a group using the group record instance selectRowsInGroup
method. Additionally, the second parameter of this method is a boolean property through which you may choose whether the previous row selection will be cleared or not. The previous selection is preserved by default.
const groupRow = gridRef.current.getRowByIndex(0).groupRow;
gridRef.current.selectRowsInGroup(groupRow);
If you need to deselect all rows within a group programmatically, you can use the deselectRowsInGroup
method.
const groupRow = gridRef.current.getRowByIndex(0).groupRow;
gridRef.current.deselectRowsInGroup(groupRow);
Templating
Group Row Templates
The group row except for the expand/collapse UI is fully templatable. By default it renders a grouping icon and displays the field name and value it represents. The context to render the template against is of type IgrGroupByRecord
.
As an example, the following template would make the group rows summary more verbose:
function template(ctx: { dataContext: IgrGroupByRowTemplateContext }) {
const groupRow = ctx.dataContext.implicit;
return (<>
<span>Total items with value: { groupRow.value } are { groupRow.records.length }</span>
</>)
}
Group Row Selector Templates
As mentioned above the group row except for the expand/collapse UI is fully templatable. To create a custom Group By row selector template use groupByRowSelectorTemplate
. From the template, you can access the implicitly provided context variable, with properties that give you information about the Group By row's state.
The SelectedCount
property shows how many of the group records are currently selected while TotalCount
shows how many records belong to the group.
function template(ctx: { dataContext: IgrGroupByRowSelectorTemplateContext }) {
return (<>
{ ctx.dataContext.implicit.selectedCount } / { ctx.dataContext.implicit.totalCount }
</>)
}
The GroupRow
property returns a reference to the group row.
function template(ctx: { dataContext: IgrGroupByRowSelectorTemplateContext }) {
const groupRow = ctx.dataContext.implicit.groupRow;
return (<>
<div onClick={(e: any) => handleGroupByRowSelectorClick(e, groupRow)}>Handle groupRow</div> `;
</>)
}
The SelectedCount
and TotalCount
properties can be used to determine if the Group By row selector should be checked or indeterminate (partially selected).
React Grid Group By With Paging
Group rows participate in the paging process along with data rows. They count towards the page size for each page. Collapsed rows are not included in the paging process. Any expand or collapse operation forces Paging to recalculate the page count and adjust the page index if necessary. Groups that span multiple pages are split between them. The group row is visible only on the page it starts on and is not repeated on subsequent pages. Summary information for group rows is calculated based on the whole group and is unaffected by Paging.
React Group By With Paging Example
Group By With Summaries
Integration between Group By and Summaries is described in the Summaries topic.
Keyboard Navigation
The grouping UI supports the following keyboard interactions:
For group rows (focus should be on the row or the expand/collapse cell)
- ALT + RIGHT - Expands the group
- ALT + LEFT - Collapses the group
- SPACE - selects all rows in the group, if rowSelection property is set to multiple
For group
IgrChip
components in the group by area (focus should be on the chip)- SHIFT + LEFT - moves the focused chip left, changing the grouping order, if possible
- SHIFT + RIGHT - moves the focused chip right, changing the grouping order, if possible
- SPACE - changes the sorting direction
- DELETE - ungroups the field
- The separate elements of the chip are also focusable and can be interacted with using the ENTER key.
React Grid Custom Group By
Grid allows defining custom grouping per column or per grouping expression, which provides grouping based on a custom condition. This is useful when you need to group by complex objects or for other application specific scenarios.
The sample below demonstrates custom grouping by Date
, where the date values are sorted and grouped by Day, Week, Month or Year based on user-selected grouping mode.
React Custom Group By Example
The sample defines custom sorting for the different date conditions.
Each custom strategy defines the GroupingComparer
method, which is the custom compare function used when sorting the values. Additionally it extracts the values from the date needed for the comparison.
const groupByMode = "Month";
function getParsedDate(date: any) {
return {
day: date.getDay(),
month: date.getMonth() + 1,
year: date.getFullYear()
};
}
A GroupingComparer
function is defined for the grouping expressions, which determines the items belonging to the same group based on the selected grouping mode. Values in the sorted data for which this function returns 0 are marked as part of the same group.
grid.groupingExpressions = [
{ fieldName: 'OrderDate', dir: SortingDirection.Desc,
groupingComparer: (a, b) => {
const dateA = this.getParsedDate(a);
const dateB = this.getParsedDate(b);
if (this.groupByMode === 'Month') {
return dateA.month === dateB.month ? 0 : -1;
} else if (this.groupByMode === "Year") {
return dateA.year === dateB.year ? 0 : -1;
} else if (this.groupByMode === 'Week') {
return this.getWeekOfDate(a) === this.getWeekOfDate(b) ? 0 : -1;
}
return dateA.day === dateB.day && dateA.month === dateB.month ? 0 : -1;
}
}
];
Styling
In addition to the predefined themes, the grid could be further customized by setting some of the available CSS properties. In case you would like to change some of the colors, you need to set a class for the grid first:
function App() {
return (
<IgrGrid className="grid">
</IgrGrid>
)
}
Then set the related CSS properties for that class:
.grid {
--ig-grid-group-row-background: #969799;
--ig-grid-group-row-selected-background: #969799;
--ig-grid-group-label-column-name-text: #f8f8f8;
--ig-grid-group-label-text: #f8f8f8;
--ig-grid-group-count-text-color: #222;
--ig-grid-expand-icon-color: #f8f8f8;
--ig-grid-expand-icon-hover-color: #f8f8f8;
}
Demo
Known Limitations
Limitation | Description |
---|---|
Maximum amount of grouped columns is 10. | If more than 10 columns are grouped an error is thrown. |
API References
Additional Resources
- Grid overview
- Virtualization and Performance
- Paging
- Filtering
- Sorting
- Column Moving
- Summaries
- Column Resizing
- Selection
Our community is active and always welcoming to new ideas.