Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pagination and performance for larger datasets #50

Open
tommiehansen opened this issue Jul 14, 2017 · 1 comment
Open

Pagination and performance for larger datasets #50

tommiehansen opened this issue Jul 14, 2017 · 1 comment

Comments

@tommiehansen
Copy link

tommiehansen commented Jul 14, 2017

This seems to be a great plugin except that it doesn't support larger tables due to performance reasons. Anything over 1000 rows x 6 columns start to become slow and over 3000 is really slow.

That mostly have to do with the browser(s) inability to handle the thousands of DOM-nodes required.
Therefor an extension ie Pagination to not draw each single TR and TD for larger datasets would be useful.

Along with pagination another useful thing would be the ability to create the table from an index ie an array. This due to the fact that performance (if only showing X rows out of Y number of total) is much better if we don't even have to loop the initial table cells in the DOM but rather have an array (or object) from the beginning to deal with.

tl;dr

  1. Limit DOM-nodes for larger data-sets
  2. Add pagination for larger data-sets
@tommiehansen tommiehansen changed the title Pagination Pagination and performance for larger datasets Jul 15, 2017
@hjacobs
Copy link

hjacobs commented Jul 21, 2021

I created a PR with a fix to make large tables much faster to sort: #54

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants