ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: ONEITSS on October 06, 2016, 07:53:58 pm
-
Hi,
we have 20+ columns and 1200 rows, we are loading all without paging that is client requirement. when user move right it is taking long time to move.
is there any prop need to enable/disable for huge size rows with H scroll.
-
Virtual rendering is the way to make it fast.
Does it have any slow/ time consuming column.render callbacks which can slow down the scrolling speed.
-
No slow columns there, if i use 100 paging then it is faster moment
can you provide more info regarding Virtual rendering
-
In virtual mode, grid displays or renders only the rows and columns which fit in its scrollable viewport. It's the virtual mode that empowers grid to display unlimited rows and columns. It can be enabled simply by setting the options virtualX ( for columns virtualization ) and virtualY ( for rows virtualization ) to true.
-
Thank you, is there anyway while enabling virutalY and set number of rows to display.
i enabled virtualY:true and given height has 440 but is showing half size of grid only.
-
No of rendered rows in viewport can be affected by change in rowHeight option.
http://paramquery.com/pro/api#option-rowHeight
-
Thank you it worked