Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/liuy97/mat-vs-table
- Owner: liuy97
- License: mit
- Created: 2018-10-23T13:33:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T01:28:30.000Z (about 2 years ago)
- Last Synced: 2024-10-10T23:35:21.916Z (3 months ago)
- Language: TypeScript
- Size: 2.92 MB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```