A simple data table with virtual scrolling using Angular Material.

Table of Contents
-
About The Project
-
Getting Started
- Used Assets
- Mat-Datatable Demo
-
API Reference
-
API Testing Harnesses
- Roadmap
- Hints On Possible Extensions
-
Contributing
- License
- Hints
This project extends 'angular material table' so that it can be used as a replacement for ngx-datatable in one of my projects. Unluckily ngx-datatable seems to be dead as it is still on angular v12 and an update to a more recent angular version is not in sight.
Mat-Datatable implements a table with virtual scrolling, sorting and filtering. Only a minimal set of the functionality of ngx-datatable is implemented.

Try out the live demo.
(back to top)
To use this package in your project just follow these simple steps.
The package can be used in Angular apps with Angular Material installed.
Install the package from npmjs:
npm install mat-datatable
Use the component as a standalone Angular component. Some properties of mat-datatable must be configured in the component class (for example in app.component.ts):
import { Component } from '@angular/core';
import { MatDatatableComponent, MatColumnDefinition } from 'mat-datatable';
@Component({
selector: 'app-root',
standalone: true,
imports: [MatDatatableComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
protected dataStore = new MyTableDataStore<MyTableItem>();
protected columnDefinitions: MatColumnDefinition<MyTableItem>[] = [
{
columnId: 'id',
header: 'ID',
cell: (row) => ({ type: 'string', text: row.id.toString() })
},
{
columnId: 'name',
sortable: true,
resizable: true,
header: 'Name',
cell: (row) => ({ type: 'string', text: row.name })
}
];
protected displayedColumns: string[] = ['id', 'name'];
}
The cell callback returns a typed content descriptor, so you can render plain strings, mailto links or images without changing the table API:
cell: (row) => ({ type: 'mailtoLink', text: row.email, url: `mailto:${row.email}` });
Add Mat-Datatable to your HTML file (for example app.component.html):
<div class="content-table">
<mat-datatable
[columnDefinitions]="columnDefinitions"
[displayedColumns]="displayedColumns"
[dataStoreProvider]="dataStore"
[trackBy]="trackBy"
[withFooter]="true"
>
Loading...
</mat-datatable>
</div>
The height of the element containing the mat-datatable must be set explicitly (for example app.component.scss):
.content-table {
height: 400px;
margin: 0 1em;
overflow: auto;
}
The cell callback returns a typed content descriptor, so you can render plain strings, mailto links or images without changing the table API:
cell: (row) => ({ type: 'mailtoLink', text: row.email, url: `mailto:${row.email}` });
(back to top)
The component is based on Angular Material and uses Google Fonts and the Google Material Icons font.
Both fonts are part of the project and not fetched via https.
(back to top)
Demo project to show all features of Mat-Datatable.
git clone git@github.com:BePo65/mat-datatable.git
cd mat-datatable
npm start
Navigate to http://localhost:4200
(back to top)
import {
MatDatatableComponent,
MatColumnDefinition,
CellValueString,
CellValueImage,
CellValueMailTo,
MatSortDefinition,
DataStoreProvider,
FieldFilterDefinition,
RowSelectionType
} from 'mat-datatable';
Standalone Angular component for rendering a virtualized Material table. The component is generic so the row type can be provided with the template parameter.
| Name | Description |
|---|
columnDefinitions: MatColumnDefinition<T>[] | Column definitions for the table. The order of the definitions does not need to match the visible column order. |
displayedColumns: string[] | List of visible column IDs in the order they should be rendered. |
rowSelectionMode: RowSelectionType | Controls row selection behaviour. Supported values are none, single and multi. |
dataStoreProvider: DataStoreProvider<T> | Data source implementation for the table. |
trackBy: TrackByFunction<T> | Optional row identity function. |
withFooter: boolean | Enables the footer row. |
| Name | Description |
|---|
rowClick: EventEmitter<T> | Emitted when a row is clicked. |
rowSelectionChange: EventEmitter<T[]> | Emitted when the current selection changes. |
sortChange: EventEmitter<MatSortDefinition[]> | Emitted when the active sort definition changes. |
| Name | Description |
|---|
activatedRow: T | undefined | Marks a row as active. |
selectedRows: T[] | Contains the current selection. |
sortDefinitions: MatSortDefinition[] | Gets or sets the current sort definition. |
filterDefinitions: FieldFilterDefinition<T>[] | Gets or sets the active filter definition. |
firstVisibleIndexChanged: Observable<number> | Emits the index of the first visible row. |
totalRowsChanged: Observable<number> | Emits the total number of rows in the datastore. |
filteredRowsChanged: Observable<number> | Emits the number of rows after filtering. |
| Name | Description |
|---|
scrollToRow(row: T) | Scrolls the viewport so the given row becomes visible. |
reloadTable() | Reloads the table from its datastore. |
Interface for a component that fetches data from the datastore while respecting sorting and filtering.
| Name | Description |
|---|
getPagedData(rowsRange, sorts, filters) | Fetches the requested page of data. |
| Parameters | |
|---|
| rowsRange: RequestRowsRange | The range of rows to fetch. |
| sorts: FieldSortDefinition[] | The sort definitions to use. |
| filters: FieldFilterDefinition[] | The filter definitions to use. |
| Return value | |
|---|
| Observable<Page> | Emitting fetched data from the datastore. |
Interface for the definition of a single table column.
| Name | Description |
|---|
columnId: string | The unique ID of the column. |
sortable?: boolean | Enables sorting for the column. |
resizable?: boolean | Enables resizing of the column. |
header: string | The text shown in the header row. |
headerAlignment?: ColumnAlignmentType | Header alignment. |
cell: (element: TRowData) => CellContentValue | Returns the rendered cell content for the current row. |
cellAlignment?: ColumnAlignmentType | Alignment of the cell content. |
width?: string | Optional column width, for example 8em. |
tooltip?: (element: TRowData) => string | Optional tooltip callback. |
showAsSingleLine?: boolean | Truncates the content to a single line. |
footer?: string | Optional footer text. |
footerAlignment?: ColumnAlignmentType | Footer alignment. |
footerColumnSpan?: number | Optional number of columns the footer should span. |
Interface for the definition of sorting for one column.
| Name | Description |
|---|
columnId: string | The columnId of the column to sort. |
direction: SortDirection | The sort direction. |
Interface defining the properties of a request for a range of rows.
| Name | Description |
|---|
startRowIndex: number | The index of the first row to return. |
numberOfRows: number | The number of rows to return. |
Interface defining the properties of a page of rows returned from the datastore.
| Name | Description |
|---|
content: T[] | The array of requested rows. |
startRowIndex: number | The index of the first row returned. |
returnedElements: number | The number of rows in content. |
totalElements: number | The number of rows in the unfiltered datastore. |
totalFilteredElements: number | The number of rows after filtering. |
type ColumnAlignmentType = 'left' | 'center' | 'right';
How the column should be rendered (as text, mail-to link or as image).
type ColumnDisplayType = 'string' | 'mailtoLink' | 'image';
Type for a literal object containing the values to be used to render a cell as plain text.
interface CellValueString extends CellValueBase {
type: 'string';
text: string;
}
| Name | Description |
|---|
type: 'string' | Indicates that the cell content is plain text. |
text: string | The text displayed in the cell. |
Type for a literal object containing the values to be used to render a cell as a mail-to link.
interface CellValueMailTo extends CellValueBase {
type: 'mailtoLink';
url: string;
text: string;
}
| Name | Description |
|---|
type: 'mailtoLink' | Indicates that the cell content is rendered as a link. |
url: string | The mail address or URL used for the link target. |
text: string | The visible text shown for the link. |
Type for a literal object containing the values to be used to render a cell as an image.
interface CellValueImage extends CellValueBase {
type: 'image';
url: string;
altText: string;
title?: string;
}
| Name | Description |
|---|
type: 'image' | Indicates that the cell content is rendered as an image. |
url: string | The URL of the image to display. |
altText: string | The alternative text for the image. |
title?: string | An optional title shown for the image. |
Type of the literal object returned by the function of type CellContentDefType.
type CellContentValue = CellValueString | CellValueMailTo | CellValueImage;
Type of the function of the field cell of the MatColumnDefinition.
type CellContentDefType<TRowData> = (element: TRowData) => CellContentValue;
The definition of a parameter for filtering the displayed data using the column identified by the given 'fieldName'.
type FieldFilterDefinition<T> = StrictUnion<
FieldFilterDefinitionSimple<T> | FieldFilterDefinitionRange<T>
>;
type FieldFilterDefinitionRange<T> = {
fieldName: keyof T;
valueFrom: string | number | Date;
valueTo: string | number | Date;
};
type FieldFilterDefinitionSimple<T> = {
fieldName: keyof T;
value: string | number | Date;
};
type FieldSortDefinition<T> = {
fieldName: keyof T;
sortDirection: SortDirectionAscDesc;
};
type RowSelectionType = 'none' | 'single' | 'multi';
type SortDirectionAscDesc = 'asc' | 'desc';
import { MatDatatableHarness } from '@bepo65/mat-datatable/testing';
| |
|---|
static async booleanMatches | Checks if the specified nullable boolean value matches the given value. |
| Parameters | |
| value: boolean | null | Promise<boolean | null> | The nullable boolean value to check, or a Promise resolving to the nullable boolean value. |
| pattern: boolean | null | The boolean the value is expected to match. If 'pattern' is 'null', the value is expected to be 'null'. |
| Returns | |
| Promise<boolean> | Whether the value matches the pattern. |
| |
| |
|---|
async getColumnName | Gets the name of the column that the cell belongs to. |
| Returns | |
| Promise<string> | The name of the column that the cell belongs to. |
| |
| |
|---|
async getColumnWidth | Gets the cell's width in 'px' (with padding). |
| Returns | |
| Promise<number> | The cell's width. |
| |
| |
|---|
async getText | Gets the cell's text. |
| Returns | |
| Promise<string> | The cell's text. |
| |
Abstract class used as base for harnesses that interact with a mat-datatable row.
| |
|---|
async getCells | Gets a list of 'MatRowCellHarness', 'MatHeaderCellHarness' or 'MatFooterCellHarness' for all cells in the row. |
| filter: CellHarnessFilters = {} | A set of criteria that can be used to filter a list of cell harness instances. |
| Returns | |
| Promise<Cell[]> | A filtered list of MatRowCellHarness for the cells in the row. |
| |
| |
|---|
async getCellTextByColumnName | Gets the text inside the row organized by columns. |
| Returns | |
| Promise<MatRowHarnessColumnsText> | The text inside the row organized by columns. |
| |
| |
|---|
async getCellTextByIndex | Gets the text of the cells in the row. |
| Parameters | |
| filter: CellHarnessFilters = {} | A set of criteria that can be used to filter a list of cell harness instances. |
| Returns | |
| Promise<string[]> | The text of the cells in the row. |
| |
| |
|---|
static async rowCellsContentMatch | Checks if the values of the table row columns given in the 'value' parameter, match the given column values. Only columns defined in the pattern are inspected. |
| Parameters | |
| value: MatRowHarnessColumnsText | Promise | null | The nullable object defining all columns of a row and their values used for the checks. Alternatively a Promise resolving to the nullable object. |
| pattern: Record<string, string | RegExp> | null | Object defining the columns and the values or RegExp expected to match. If 'pattern' is 'null', the value is expected to be 'null'. |
| Returns | |
| Promise<boolean> | Whether the value matches the pattern. |
| |
Harness for interacting with a mat-datatable in tests.
| Name | Description |
|---|
static hostSelector: '.mat-datatable' | The selector for the host element of a 'MatDatatableHarness'. |
| |
| |
|---|
async getAllChildLoaders | Gets an array of HarnessLoader instances. |
| Parameters | |
| selector: string | A string used for selecting the instances. |
| Returns | |
| Promise<HarnessLoader[]> | An array of HarnessLoader instances. |
| |
| |
|---|
async getAllHarnesses | Gets an array of harness instances. |
| Parameters | |
| query: HarnessQuery | A query for a ComponentHarness used to filter the instances, which is expressed as either a ComponentHarnessConstructor or a HarnessPredicate. |
| Returns | |
| Promise<T[]> | An array of harness instances. |
| |
| |
|---|
async getCellTextByColumnName | Gets the text inside the entire table organized by columns. |
| Returns | |
| Promise<MatDatatableHarnessColumnsText> | The text inside the entire table organized by columns. |
| |
| |
|---|
async getCellTextByIndex | Gets the text inside the entire table organized by rows. |
| Returns | |
| Promise<string[][]> | Array for all rows containing the content of a row as an array. |
| |
| |
|---|
async getChildLoader | Searches for an element matching the given selector below the root element of this HarnessLoader. |
| Parameters | |
| selector: string | A string used for selecting the HarnessLoader. |
| Returns | |
| Promise<HarnessLoader> | A new HarnessLoader rooted at the first matching element. |
| |
| |
|---|
async getFooterRows | Gets a list of the footer rows in a mat-datatable. |
| Returns | |
| Promise<MatHeaderRowHarness[]> | A list of the footer rows. |
| |
| |
|---|
async getHarness | Searches for an instance of the given ComponentHarness class or HarnessPredicate below the root element of this HarnessLoader. |
| Parameters | |
| query: HarnessQuery | A query for a ComponentHarness used to filter the instances, which is expressed as either a ComponentHarnessConstructor or a HarnessPredicate. |
| Returns | |
| Promise<T> | An instance of the harness corresponding to the first matching element. |
| |
| |
|---|
async getHarnessOrNull | Gets an instance of the given ComponentHarness class or HarnessPredicate below the root element of this HarnessLoader. |
| Parameters | |
| query HarnessQuery | A query for a ComponentHarness used to filter the instances, which is expressed as either a ComponentHarnessConstructor or a HarnessPredicate. |
| Returns | |
| Promise<T | null> | An instance of the harness corresponding to the first matching element. |
| |
| |
|---|
async getHeaderRows | Gets a list of the header rows in a mat-datatable. |
| Returns | |
| Promise<MatHeaderRowHarness[]> | A list of the header rows. |
| |
| |
|---|
async getRows | Gets a list of the regular data rows in a mat-datatable. |
| Parameters | |
| filter: RowHarnessFilters = {} | A set of criteria that can be used to filter a list of row harness instances. |
| Returns | |
| Promise<MatRowHarness[]> | A filtered list of the regular data rows. |
| |
| |
|---|
async hasHarness | Check, if the harness contains the instances defined by 'query'. |
| Parameters | |
| query HarnessQuery | A query for a ComponentHarness used to filter the instances, which is expressed as either a ComponentHarnessConstructor or a HarnessPredicate. |
| Returns | |
| Promise<boolean> | 'True', if the instances is part of the harness. |
| |
| |
|---|
async host | Gets a Promise for the 'TestElement' representing the host element of the component. |
| Returns | |
| Promise<TestElement> | The 'TestElement' representing the host element of the component. |
| |
| |
|---|
static with | Gets a 'HarnessPredicate' that can be used to search for a mat-datatable with specific attributes. |
| Parameters | |
| options: TableHarnessFilters = {} | Options for narrowing the search. |
| Returns | |
| HarnessPredicate | A 'HarnessPredicate' configured with the given options. |
| |
Harness for interacting with an MDC-based Angular Material table footer cell.
| |
|---|
static hostSelector: '.mat-mdc-footer-cell' | The selector for the host element of a 'MatFooterCellHarness' instance. |
Harness for interacting with a mat-datatable footer row.
| |
|---|
static hostSelector: '.mat-mdc-footer-row' | Used to identify the host element of a 'MatFooterRowHarness' instance. |
| |
Harness for interacting with an MDC-based Angular Material table header cell.
| |
|---|
static hostSelector: '.mat-mdc-header-cell' | The selector for the host element of a 'MatHeaderCellHarness' instance. |
| |
|---|
async getText | Gets the header cell's text. |
| Return | |
| Promise<string> | The header cell's text. |
| |
| |
|---|
async isResizable | Check, if the cell is defined as 'resizable'. |
| Returns | |
| Promise<boolean> | The cell is resizable. |
| |
| |
|---|
async resize | Resize the cell to a new width (if 'resizable'). |
| Parameters | |
| newWidth: number | The new width of the cell in 'px'. |
| Returns | |
| Promise<void> | The cell got resized. |
| |
Harness for interacting with a mat-datatable header row.
| |
|---|
static hostSelector: '.mat-mdc-header-row' | Used to identify the host element of a 'MatHeaderRowHarness' instance. |
| |
| |
|---|
async getCells | Gets a list of 'MatRowCellHarness' for all cells in the row. |
| Parameters | |
| filter: HeaderCellHarnessFilters = {} | A set of criteria that can be used to filter a list of cell harness instances. |
| Returns | |
| Promise<MatHeaderCellHarness[]> | A filtered list of MatRowCellHarness for the cells in the header row. |
| |
Harness for interacting with a mat-multi-sort element in tests.
| |
|---|
static hostSelector: '.mat-multi-sort' | Used to identify the elements in the DOM. |
| |
| |
|---|
async getActiveHeaders | Gets all headers used for sorting in the 'mat-multi-sort'. |
| Returns | |
| Promise<MatMultiSortHeaderHarness[]> | All headers used for sorting. |
| |
| |
|---|
async getActiveSortData | Gets the sorting data for all headers used for sorting in the 'mat-multi-sort'. |
| Returns | |
| Promise<DomSortingDefinition[]> | Sorting data of all headers used for sorting. |
| |
| |
|---|
async getSortHeaders | Gets the headers used for sorting in the 'mat-multi-sort' reduced by the given 'filter'. |
| Parameters | |
| filter: MultiSortHeaderHarnessFilters = {} | |
| Returns | |
| Promise<MatMultiSortHeaderHarness[]> | The filtered sort headers. |
| |
| |
|---|
async host | Gets a Promise for the 'TestElement' representing the host element of the component. |
| Returns | |
| Promise<TestElement> | The 'TestElement' representing the host element of the component. |
| |
| |
|---|
static with | Gets a 'HarnessPredicate' that can be used to search for a 'mat-multi-sort' with specific attributes. |
| Parameters | |
| options: MultiSortHarnessFilters = {} | Options for narrowing the search. |
| Returns | |
| HarnessPredicate<MatMultiSortHarness> | A 'HarnessPredicate' configured with the given options. |
| |
Harness for interacting with a mat-multi-sort header element in tests.
| |
|---|
static hostSelector | Used to identify the elements in the DOM (value: '.mat-multi-sort-header'). |
| |
| |
|---|
async click | Clicks the header to change its sorting direction. Only works if the header is enabled. |
| Returns | |
| Promise<void> | Promise that resolves when the click action completes. |
| |
| |
|---|
async getAllSortData | Gets an object with the sorting data of the header. |
| Returns | |
| Promise<MatMultiSortHeaderHarnessSortDefinition> | The sorting data of the header. |
| |
| |
|---|
async getId | Gets the id of the sort header. |
| Returns | |
| Promise<string> | The id of the sort header. |
| |
| |
|---|
async getLabel | Gets the label of the sort header. |
| Returns | |
| Promise<string> | The label of the sort header. |
| |
| |
|---|
async getSortDirection | Gets the sorting direction of the header. |
| Returns | |
| Promise<SortDirection> | The sorting direction of the header. |
| |
| |
|---|
async getSortPosition | Gets the sorting position of the header. |
| Returns | |
| Promise<SortDirection> | The sorting position of the header (1..n). |
| |
| |
|---|
async host | Gets a Promise for the 'TestElement' representing the host element of the component. |
| Returns | |
| Promise | The 'Promise' for the 'TestElement'. |
| |
| |
|---|
async isActive | Gets whether the sort header is currently being used for sorting. |
| Returns | |
| Promise | True, if the sort header is currently being used for sorting. |
| |
| |
|---|
async isDisabled | Whether the sort header is disabled. |
| Returns | |
| Promise | True, if the sort header is disabled. |
| |
| |
|---|
static with | Gets a 'HarnessPredicate' that can be used to search for a sort header with specific attributes. |
| Parameters | |
| options: MultiSortHeaderHarnessFilters = {} | Options for narrowing the search. |
| Returns | |
| HarnessPredicate<MatMultiSortHeaderHarness> | A 'HarnessPredicate' configured with the given options. |
| |
Harness for interacting with a mat-datatable cell in a row.
| |
|---|
static hostSelector: '.mat-mdc-cell' | Used to identify the host element of a 'MatRowCellHarness' instance. |
| |
|---|
async isSingleLine | Check, if the cell is defined as 'showAsSingleLine'. |
| Returns | |
| Promise<boolean> | The cell is shown as single line. |
| |
Harness for interacting with a mat-datatable row.
| |
|---|
static hostSelector: '.mat-mdc-row' | Used to identify the elements in the DOM. |
| |
|---|
async click | Clicks the row (e.g. to select a row). |
| Returns | |
| Promise<void> | Promise that resolves when the click action completes. |
| |
| |
|---|
static with | Gets a HarnessPredicate that can be used to search for a mat-datatable row with specific attributes. |
| Parameters | |
| options: RowHarnessFilters = {} | Options for narrowing the search. |
| Returns | |
| HarnessPredicate | A 'HarnessPredicate' configured with the given options. |
(back to top)
A set of criteria that can be used to filter a list of cell harness instances.
| |
|---|
| columnName: string | RegExp | Only find instances whose column name matches the given value. |
| text: string | RegExp | Only find instances whose text matches the given value. |
| |
| |
|---|
id: string | ID of the header element. |
label: string | Label of the header. |
sortDirection: SortDirection | Sort direction of the header. |
sortPosition: number | Sort position of the header (1..n). |
| |
Text extracted from a table organized by columns.
This interface describes an object, whose keys are the names of the columns and whose values are an object with the following properties:
| |
|---|
| text: string[] | Array with content of the rows of this column. |
| headerText: string | Content of the header row of this column. |
| footerText: string | undefined | Content of the footer row of this column. |
| |
A set of criteria that can be used to filter a list of table harness instances.
Text extracted from a table row organized by columns.
This interface describes an object, whose keys are the names of the columns and whose values are the corresponding cell content.
| |
|---|
label: string | RegExp | Label of the header. |
id: string | RegExp | ID of the header element. |
sortDirection: SortDirection | Sort direction of the header. |
sortPosition: number | Sort position of the header (1..n). |
| |
A set of criteria that can be used to filter a list of row harness instances.
(back to top)
See the open issues for a full list of proposed features (and known issues).
(back to top)
- to make footer turn on / off dynamically it is not sufficient to wrap the footer cell and row definitions in ng-container. Details see stackoverflow. The demo uses ngx-rerender.
(back to top)
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature)
- Commit your Changes (
git commit -m 'Add some AmazingFeature')
- Push to the Branch (
git push origin feature/AmazingFeature)
- Open a Pull Request
The project uses 'standard-version' to create the changelog. To enable this system, commit messages are linted before commits are executed by git.
To enable this system you have to run the following scripts in your local repository home directory:
npx husky install
npx husky add .husky/commit-msg "npx --no -- commitlint --edit \$1"
The structure of commit messages is:
<header>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
header
<type>(<scope>): <short summary>
type and scope
- build: Changes that affect the build system or external dependencies (example scope: npm)
- docs: Documentation only changes
- feat: A new feature
- fix: A bug fix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- test: Adding missing tests or correcting existing tests (example scopes: demo, lib, e2e)
footer
BREAKING CHANGE: ... (requires MAJOR in Semantic Versioning)
For details of the commit messages format see Contributing to Angular.
(back to top)
Copyright © 2025 Bernhard Pottler.
Distributed under the MIT License. See LICENSE for more information.
This project uses the fonts 'Roboto' and 'Material Icons' from the Google Fonts Library that are licensed under the Apache License Version 2.0.
(back to top)
As eslint V9 requires a fundamental change to the configuration files, the update will be done in a later version.
As a consequence the package eslint-plugin-cypress cannot be updated to a version 4.x or 5.x (as this version has a peerDependency of eslint >= 9).
@cypress/webpack-preprocessor cannot be updated to v7.x as it does not support webpack v4.x (used by angular v17.x).
cypress cannot be updated to v15.x as it no longer supports webpack v4.x (angular v18 will switch away from webpack).
@cypress/schematic cannot be updated to v4.x, as this requires angular v18.x.
(back to top)