Hi,
is there a possibility to display huge datatables on one page wich will reload data on demand when i scroll down or go to an specific scrollpos. in this case it should load data from this pos with a +/- range. record couter must show all data available and also scroller range settings must be set to the range of the whole data
cheers
Helmut Katz
1 Answers
Hello,
For virtual / on-demand loading of data, all you need is to set scroll property.
$opt["scroll"] = true;
…
$g->set_options($opt);
Creates dynamic scrolling grids. When enabled, the pager elements are disabled and we can use the vertical scrollbar to load data. useful for big datasets
Your Answer