The last time I worked on the web application, of which a large part was the presentation of processed data in tabular form, with the possibility of sorting, etc. We had to find a good and quick solution for this purpose.
Tables in JavaScript — solutions
There is a small list of good solutions.
1. Dynatable.js
It’s quite a fresh look at the issue of creating solutions for tabular data in JavaScript. Dynatable.js is a jQuery plugin, also based on HTML5 and JSON.
This solution allows quite comfortably reproduce the data in the form of an interactive table. There are also many opportunities, such as search (filtering), creating a table with pagination, sorting, embedding images and more.
The website contains excellent documentation with examples. Available licenses: Open-source and commercial.
URL:
2. DataTables
I know this solution from one of older projects.
It is high quality product, with a paid support. Working with this solution was quite nicely.
As jQuery plugin, it’s easy to use:
$(document).ready(function() { $('#test-table').dataTable(); });
It also has a lot of customization options, including painless definition of CSS styles for tables.
Available on GPL or BSD license.
URL: