How to implement infinite scrolling with Azure DevOps extension Table
karelkral opened this issue · 0 comments
karelkral commented
In our Azure DevOps extension we are using Advanced table from NPM azure-devops-ui
. But this table has limitations of row count that can display. For example when displaying 1000 rows, then a browser becomes slow and sometimes irresponsible.
We understand that infinite scrolling may be the solution. When scrolling hits the bottom of the page, the next records will be loaded. But there is no example of how to use it with Advanced table.
Should I use some of React library for infinite scrolling? Or there is some mechanism implemented in azure-devops-ui
? Cannot find it but as I can see, infinite scrolling is realized on Azure DevOps. For example in Pipelines//Runs.
Any help will be appreciated.