We are looking to implement the grid to replace agGrid in a situation where the users are accustomed to some patterns. We are using server-side Blazor and have reports that may have 60k rows. Our preference is not to use paging, and since we have grouping, it seems that virtual scrolling is not an option.
Right now we struggle to load as many as 10k rows, even without grouping. I get an error: WebSocket closed with error 1006.
We are not doing any updates in the grid, so it would seem that if we could turn off anything to make it read only (we do filter and sort it, but don't update any cells) then that might lighten the load.
Any ideas about grid or column attributes we could set? Or any other ideas?