Description
I'm trying to create my own component using ui-grid (3.0.0-rc21) as base.
I'll to work with a lot of columns (500+) and with a lot of rows (100.000+) and I notice one problem: when you scroll fast (horizontally and vertically), for one moment, the "content" of grid is staying blank, and then the content is rendered, giving the feeling of slowness.
See the example in http://ui-grid.info/docs/#/tutorial/191_horizontal_scrolling
I've tried to use "virtualizationThreshold" and "columnVirtualizationThreshold", without success.
Is there any way to increase grid performance?
If the answer is "no", see how jqxGrid works: it "freezes" the grid content when you scroll fast and only render it when the content is "ready" to be rendered. See http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/#demos/jqxgrid/deferredscrollinglargedata.htm, clicking on "Deferred Scrolling on a Large Data Set" in the left-side menu.
Is there any way to implement something like this?