We're looking to improve
the performance of the KendoUI Grid when rendering large data sets with client
filtering & pagination. Is it possible to get virtual scrolling with client
side pagination, where the scrolling is finite and limited to the current page
size (yet still takes advantage of the virtual rendering).
Essentially, we want to take advantage of the virtual DOM rendering, but not the infinite scrolling and data fetching. Otherwise, is there a way to override the renderer to use another rendering library.
Also, is there a way to dynamically set the pageSize depending on the maximum number of visible rows. I.e.
pageSize = Math.floor(gridHeight / rowHeight)
Essentially, we want to take advantage of the virtual DOM rendering, but not the infinite scrolling and data fetching. Otherwise, is there a way to override the renderer to use another rendering library.
Also, is there a way to dynamically set the pageSize depending on the maximum number of visible rows. I.e.
pageSize = Math.floor(gridHeight / rowHeight)