Home > Software design >  Set an HTML table with filters and sorting
Set an HTML table with filters and sorting

Time:11-11

I am looking for a script that allows me to insert in an html table the possibility of filtering data with the same (or almost) elasticity that for example Excel offers, that is the possibility of filtering certain elements even on multiple fields, the possibility of order in ascending and descending order and also the possibility of filtering all elements, for example greater or less than a certain number.

Is there something a thing like that?

Thanks a lot for the support!

CodePudding user response:

Datatables is the solution

Url: https://datatables.net/

You have multiple plugins/extensions for this... You can do everything you imagine

CodePudding user response:

By the description of your issue I would suggest you to take a look at the Datatables website or in the Tabulator website. Both work pretty well and are very easy to get up and running.

  • Related