I am currently designing a website using Blazor WebAssembly. I have a list that I want to display using the Virtualize component. For basic usage, I found the needed documentation online.
However, I'd like to know if there's a way to programmatically navigate to a specific item in the list—for example, jump directly to the 50th element—and display the range from the 50th to the 60th.
In other words:
Can I interact with the Virtualize component to control which rows are displayed?Is it possible to achieve this without using JavaScript?