ngx-ui-scroll is an angular framework directive to provide unlimited virtual bi-directional scrolling over a finite viewport. Built on top of the original vscroll virtual scrolling engine.
angular virtual scroll, angular virtual scroll dynamic height, infinite scroll angular, cdk virtual scroll viewport, angular virtual scroll lazy loading, angular virtual scroll table
Compatibility
The ngx-ui-scroll library does not have comma changes in its API, but there are inevitable changes in how it is created and distributed to the host application depending on the Angular version.
ngx-ui-scroll | Angular | compiled | support | notes |
---|---|---|---|---|
v1 | 5-12 | View Engine | no | no dependencies (vscroll is not extracted) |
v2 | 5-12 | View Engine | maintenance | vscroll is a bundle-dependency |
v3 | 12+ | Ivy | active | vscroll is a peer-dependency |
How to make use of it:
Install:
npm install ngx-ui-scroll
1. The UiScrollModule must be imported into the application/feature module where it will be used.
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { UiScrollModule } from 'ngx-ui-scroll'; import { AppComponent } from './app.component'; @NgModule({ declarations: [AppComponent], imports: [ BrowserModule, UiScrollModule ], bootstrap: [AppComponent] }) export class AppModule { }
2. A basic usage model might look like this:
<div class="viewport"> <div *uiScroll="let item of datasource"> <b>{{item.text}}</b> </div> </div>
3. Where the viewport is a scrollable area of limited height:
.viewport { height: 300px; overflow-y: auto; }
Infinite/Virtual Scroll for Angular, ngx-ui-scroll Plugin/Github, angularcdkscrolling
See Demo And Download
Official Website(dhilt): Click Here
This superior jQuery/javascript plugin is developed by dhilt. For extra advanced usage, please go to the official website.