Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

3
Votes

Provide support for Data virtualization in the Blazor ListView component. The Blazor ListView supports DOM virtualization already.

But we need to fetch the data based on scrolling in the UI.

The same functionality was already available in Syncfusion Blazor DataGrid.


For example,

  • /odata/WeatherForecasts - ?$count=true&$skip=0&$top=16
  • /odata/WeatherForecasts - ?$count=true&$skip=32&$top=16 (when you scroll down)
  • /odata/WeatherForecasts - ?$count=true&$skip=93&$top=16 (when you scroll down)
  • /odata/WeatherForecasts - ?$count=true&$skip=431&$top=16 (when you scroll down)