Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liuy97/mat-vs-table

mat table with virtual scroll
https://github.com/liuy97/mat-vs-table

Last synced: about 2 months ago
JSON representation

mat table with virtual scroll

Awesome Lists containing this project

README

        

[![npm version](https://badge.fury.io/js/mat-vs-table.svg)](https://badge.fury.io/js/mat-vs-table)
[![Angular Style Guide](https://mgechev.github.io/angular2-style-guide/images/badge.svg)](https://angular.io/styleguide)

#### Quick links
[StackBlitz Template](https://stackblitz.com/edit/mat-vs-table)

# MatTable with Virtual scroll support

add support for virtual scrolling in angular mat-table

## Dependencies
* [email protected] [Angular](https://angular.io) (*requires* Angular 10 or higher)

* [email protected] [Angular](https://angular.io) (*requires* Angular 8 or 9)

* [email protected] [Angular](https://angular.io) (*requires* Angular 7)

## Installation
Install above dependencies via *npm*.

Now install `mat-vs-table` via:
```shell
npm install --save mat-vs-table
```

---

Once installed you need to import the main module:
```js
import { MatVsTableModule } from 'mat-vs-table';
```

```js
import { MatVsTableModule } from 'mat-vs-table';

@NgModule({
declarations: [
AppComponent,
],
imports: [
MatVsTableModule,
MatTableModule,
MatSortModule,
BrowserAnimationsModule,
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

```

```html





```