Results:
Loading...

Angular Data GridRow Pinning

Pinned rows appear either above or below the normal rows of a table. This feature in other grids is also known as Frozen Rows or Floating Rows.

To put pinned rows into your grid, set pinnedTopRowData or pinnedBottomRowData in the same way as you would set normal data into rowData. After the grid is created, you can update the pinned rows by calling api.setPinnedTopRowData(rows) and setPinnedBottomRowData(rows).

pinnedTopRowData
any[]
Data to be displayed as pinned top rows in the grid.
pinnedBottomRowData
any[]
Data to be displayed as pinned bottom rows in the grid.
setPinnedTopRowData
Function
Set the top pinned rows. Call with no rows / undefined to clear top pinned rows.
setPinnedTopRowData = (rows?: any[]) => void;
setPinnedBottomRowData
Function
Set the bottom pinned rows. Call with no rows / undefined to clear bottom pinned rows.
setPinnedBottomRowData = (rows?: any[]) => void;

Cell Editing

Cell editing can take place as normal on pinned rows.

Cell Rendering

Cell rendering can take place as normal on pinned rows. If you want to use a different Cell Renderer for pinned rows vs normal rows, use colDef.cellRendererSelector to specify different Cell Renderers for different rows.

cellRendererSelector
CellRendererSelectorFunc
Callback to select which cell renderer to be used for a given row within the same column.
cellRendererSelector: CellRendererSelectorFunc<TData>;

interface CellRendererSelectorFunc<TData = any> {
    (params: ICellRendererParams<TData>) : CellRendererSelectorResult | undefined
}

interface CellRendererSelectorResult {
  // Equivalent of setting `colDef.cellRenderer` 
  component?: any;
  // Equivalent of setting `colDef.cellRendererParams` 
  params?: any;
}

Example

The example below shows pinned rows. Select the number of rows you want to pin at the top and the bottom using the selection above the grid.

In this example we're using Components to render custom pinned row values for Athlete and Age (colour blue and italics respectively).

Non Supported Items

Pinned rows are not part of the main row model. For this reason, the following is not possible:

  • Sorting: Pinned rows cannot be sorted.
  • Filtering: Pinned rows are not filtered.
  • Row Grouping: Pinned rows cannot be grouped.
  • Row Selection: Pinned rows cannot be selected.