Looking for the best library for table design / selector
Depending on the size of the table you might run into some issues. Rendering thousands of DOM elements is slow no matter what. If all your rows are in the DOM and you try to filter its going to cause thousands of DOM rewrites/calculations that are slow.
To get around this you'll need a table plugin that keeps your data in memory and only renders 20-200 rows at a time. Then when users scroll, the plugin will swap in the relevant in-memory data to the existing DOM elements.
More on reddit.comJS library to display huge (billions of cells) tables
Tabulator 4.0 Launched Today - Interactive tables made easy
Version of DataTables without jQuery?
Already asked many times on the internet, just last year on Reddit for example: https://www.reddit.com/r/javascript/comments/4i5msl/good_data_table_library_without_jquery/
More on reddit.comVideos
I've been looking for a good js package for displaying data in tables, but it looks like there isn't. The ones out there have one or more of these issues:
-
Not very customizable
-
Are only used in a specific framework
-
Don't have all features. For example, it has pagination, but can't resize columns.
-
Slow
I think Tabulator is the best one out there, but still, I think we can have a better one in terms of design and DX.