Add scrollTop method to ScrollPanel #5787
Labels
Type: Enhancement
Issue contains an enhancement related to a specific component. Additional functionality has been add
Milestone
I'm submitting a ... (check one with "x")
https://www.primefaces.org/primeng/#/scrollpanel
What is the motivation / use case for changing the behavior?
i use p-table in a scrollpanel, and if a user open the page with the scrollpanel the content should scroll to top, i used this with:
constructor(@Inject(DOCUMENT) private document: Document) {
setTimeout(() => { let scroll = this.document.body.getElementsByClassName("ui-scrollpanel-content")[0]; if (scroll) { scroll.scrollTop = scroll.scrollHeight; } }, 1000);
The text was updated successfully, but these errors were encountered: