adama357
adama357
I guess the problem line is `this.el.nativeElement.style.height = this.el.nativeElement.scrollHeight + 'px';` in [inputtextarea.ts](https://github.com/primefaces/primeng/blob/master/src/app/components/inputtextarea/inputtextarea.ts). `scrollHeight` starts as 0 if the parent element is hidden. A better-than-nothing solution would be to only...
By adding this CSS code, I'm able to keep the sidebar on the screen: ``` .ng-sidebar__backdrop[_ngcontent-c0] { position: fixed !important; } .ng-sidebar[_ngcontent-c1] { position: fixed !important; } ``` Even after...
Thank you for your reply. Unfortunately, after trying out ngx-page-scroll, we'll probably stick with using ng2-scroll-to for now, because: (1) the performance is better: ngx-page-scroll has a low frame rate...