ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: kshipra on September 12, 2017, 01:55:45 am

Title: "All" option in paging dropdown
Post 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
Title: Re: "All" option in paging dropdown
Post by: paramvir on September 12, 2017, 10:11:04 pm
'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.

Code: [Select]
            var len = grid.getData().length;
            grid.option('pageModel.rPP', len);
            grid.refreshView();