我正在使用PrimeNG。如何在每次选择更改时使其自动滚动?我使用了这段代码,但是当我从另一个页面导航时,它不起作用:
this.element = this.rowElement.find(r => r.nativeElement.getAttribute("ID") == id);
if (this.element)
this.element.nativeElement.scrollIntoView({ behavior: "smooth",
inline: "start", block: "start" });