ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: kshipra on September 12, 2017, 01:55:45 am
-
Hi,
On "All" option in paging drop down, I want to show all data at once. How can I do that ?
Thanks
-
'All' option in paging drop down is not supported. you can place a button in the toolbar or somewhere else, on the click of which show all the records.
var len = grid.getData().length;
grid.option('pageModel.rPP', len);
grid.refreshView();