ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on March 27, 2019, 02:57:26 pm

Title: Dynamically Updating Pagination Option Not Working
Post by: EPM Solutions on March 27, 2019, 02:57:26 pm
Hello Team,

We want  to update pagination options dynamically but seems it is not working.

For your reference we created a new plunker to test.

https://next.plnkr.co/edit/CNs1PaPbwobqZQzk?preview

In above Plunker we created a new button in toolbar for updating pagination.


Please check and give your suggestion asap.
Title: Re: Dynamically Updating Pagination Option Not Working
Post by: paramvir on March 27, 2019, 06:14:08 pm
Please use this:

Code: [Select]
listener: function (evt) {
                          var grid = this;

                          grid.pager().destroy();
                          grid.option('pageModel.rPPOptions', [10,30,50,70,90]);
                          grid.option('pageModel.rPP', 30);

                          grid.refreshView();

                          console.log('Pagination Updated')
                        }