Tabulator: Pagination and Row Grouping

Created on 28 Sep 2017  路  4Comments  路  Source: olifolkerd/tabulator

When I try to do 'groupBy' and 'pagination' I get the error:
_Invalid Setup Combination - Pagination and Row Grouping cannot be enabled at the same time_

My code needs Row Grouping, but it takes a long time to load. If I do plain Pagination, then the code loads a lot quicker. I have a large data set being used.
Is there a way to speed up the row grouping, sorting or loading of the page?

Question - Ask On Stack Overflow

Most helpful comment

It works. Thank you

All 4 comments

It sounds like you havn't defined the height of your table.

Once you define the height option it will enable the virtual DOM and will render almost any number of rows instantly.

Checkout the Documentation for more info on the Virtual DOM.

Cheers

Oli

Do you mean like

$("#tabulator").tabulator({
   pagination:"local",
   paginationSize:100,
   height: "100%";
   groupBy: "srcip",

yup, thats the one.

At the moment Tablulator cannot offer pagination and grouping at the same time, but if you have the height defined you shouldnt have any loading time issues when using row grouping.

if you are still having loading issue, how are you loading ur data, from an ajax request or from loadcal sources, and how many rows are you talking about.

If you are still having trouble, could you post a copy of your table constructor. Also which version of Tabulator are you using?

Cheers

Oli

It works. Thank you

Was this page helpful?
0 / 5 - 0 ratings

Related issues

cemmons picture cemmons  路  3Comments

mohanen picture mohanen  路  3Comments

Manbec picture Manbec  路  3Comments

andreivanea picture andreivanea  路  3Comments

tomheaps picture tomheaps  路  3Comments