React Hierarchical Grid Row Pinning
The Ignite UI for React Row Pinning feature in React Hierarchical Grid allows you to pin one or multiple rows to the top or bottom of grid. Row Pinning allows end-users to pin rows in a particular order, duplicating them in a special area that is always visible even when they scroll the IgrHierarchicalGrid
vertically. The React Hierarchical Grid has a built-in row pinning UI, which is enabled by initializing an IgrActionStrip
component in the context of Hierarchical Grid. In addition, you can define custom UI and change the pin state of the rows via the Row Pinning API.
React Hierarchical Grid Row Pinning Example
Row Pinning UI
The built-in row pinning UI is enabled by adding an IgrActionStrip
component with the IgrGridPinningActions
component. The action strip is automatically shown when hovering a row and will display a pin or unpin button icon based on the state of the row it is shown for. An additional action allowing to scroll the copy of the pinned row into view is shown for each pinned row as well.
<IgrHierarchicalGrid>
<IgrColumn field="Country" header="Country"> </IgrColumn>
<IgrActionStrip key="actionStrip">
<IgrGridPinningActions key="pinningActions"></IgrGridPinningActions>
<IgrGridEditingActions key="editingActions"></IgrGridEditingActions>
</IgrActionStrip>
</IgrHierarchicalGrid>
Row Pinning API
Row pinning is controlled through the pinned
input of the Row
. Pinned rows are rendered at the top of the IgrHierarchicalGrid
by default and stay fixed through vertical scrolling of the unpinned rows in the IgrHierarchicalGrid
body.
gridRef.current.getRowByIndex(0).pinned = true;
You may also use the IgrHierarchicalGrid
's pinRow
or unpinRow
methods of the to pin or unpin records by their ID:
gridRef.current.pinRow('ALFKI');
gridRef.current.unpinRow('ALFKI');
Note that the row ID is the primary key value, defined by the primaryKey
of the grid, or the record instance itself. Both methods return a boolean value indicating whether their respective operation is successful or not. Usually the reason they fail is that the row is already in the desired state.
A row is pinned below the last pinned row. Changing the order of the pinned rows can be done by subscribing to the RowPinning
event and changing the InsertAtIndex
property of the event arguments to the desired position index.
function rowPinning(grid: IgrGridBaseDirective, event: IgrPinRowEventArgs ) {
event.detail.insertAtIndex = 0;
}
<IgrHierarchicalGrid autoGenerate="true" rowPinning={rowPinning}>
</IgrHierarchicalGrid>
Pinning Position
You can change the row pinning position via the pinning
configuration option. It allows you to set the pin area position to either Top or Bottom.
When set to Bottom pinned rows are rendered at the bottom of the grid, after the unpinned rows. Unpinned rows can be scrolled vertically, while the pinned rows remain fixed at the bottom.
<IgrHierarchicalGrid id="dataGrid" autoGenerate="true">
</IgrHierarchicalGrid>
var grid = document.getElementById("dataGrid") as IgrHierarchicalGrid;
grid.pinning = { rows: RowPinningPosition.Bottom };
Custom Row Pinning UI
You can define your custom UI and change the pin state of the rows via the related API.
Via extra column with icon
Let's say that instead of an action strip you would like to show a pin icon in every row allowing the end-user to click and change a particular row's pin state. This can be done by adding an extra column with a cell template containing the custom icon.
function cellPinCellTemplate(ctx: IgrCellTemplateContext) {
const row = ctx.dataContext.cell.row;
return (
<>
<span onPointerDown={(e: any) => toggleRowPin(row)}>📌</span>
</>
);
}
<IgrHierarchicalGrid primaryKey="ID" autoGenerate="false">
<IgrColumn width="70px" bodyTemplate={cellPinCellTemplate}>
</IgrColumn>
<IgrRowIsland childDataKey="Orders" autoGenerate="true"></IgrRowIsland>
</IgrHierarchicalGrid>
On click of the custom icon the pin state of the related row can be changed using the row's API methods.
function toggleRowPin(row: IgrRowType) {
row.pinned = !row.pinned;
}
Demo
Row Pinning Limitations
- Only records that exist in the data source can be pinned.
- The row pinning state is not exported to excel. The grid is exported as if no row pinning is applied.
- The copies of pinned rows in the scrollable area of the grid are an integral part of how other grid features achieve their functionality in the presence of pinned rows and therefore their creation cannot be disabled nor can they be removed.
- As Row Selection works entirely with row Ids, selecting pinned rows selects their copies as well (and vice versa). Additionally, range selection (e.g. using Shift + click) within the pinned area works the same way as selecting a range of rows within the scrollable area. The resulting selection includes all rows in between even if they are not currently pinned. Getting the selected rows through the API only returns a single instance of each selected record.
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:
<IgrHierarchicalGrid className="grid"></IgrHierarchicalGrid>
Then set the related CSS properties for that class:
.grid {
--ig-grid-pinned-border-width: 5px;
--ig-grid-pinned-border-style: double;
--ig-grid-pinned-border-color: #FFCD0F;
--ig-grid-cell-active-border-color: #FFCD0F;
}
Demo
API References
IgrHierarchicalGrid
HierarchicalGridRow
IgrRowType
Additional Resources
Our community is active and always welcoming to new ideas.