Pagination bug: Doesn't update when data is filtered

When you filter data in the grid, the pagination doesn’t update itself until u click on ‘next’ ‘previous’ button.

Please, try to repaint the pagination using the

pagination.paint()

after the filter apply.

in case of a header filter you may use the filterChange event:

grid.events.on("filterChange", function(value,colId,filterId){
   pagination.paint()
});

Hello Nikolai.

We fixed your reported problem in the latest dhx.Suite update (v8.3.4).
Now the the paging updates accordingly to the component filtered state automatically.
You can test it in the following example:
https://snippet.dhtmlx.com/w675bysd
Please, download the latest available dhx.Suite build from your client’s area to get this fix.
Thank you for your report.