Angular 5 how to add ngx-perfect-scrollbar dynamically?

2.4k Views Asked by At

How can I add PerfectScrollbarComponent (ngx-perfect-scrollbar) selector is 'perfect-scrollbar' component dynamically to Angular 5 component?

Thank you in advance.

1

There are 1 best solutions below

1
user2132866 On

In your template.html

<perfect-scrollbar #perfectscroll>...</perfect-scrollbar>

In your component.ts

import { PerfectScrollbarComponent } from 'ngx-perfect-scrollbar';
...
@ViewChild('perfectscroll') ps: PerfectScrollbarComponent;
...
this.ps.directiveRef.scrollToBottom();