Wondering if anyone knows of a Javascript plugin with the functionality to sort and filter an HTML table similar to Google Sheets and Excel (see pic). Specifically, the filtering functionality is the kind where multiple values can be checked/unchecked (as opposed to a search box which can only search one value).
I know the functionality exists but I've looked high and low and haven't found anything. Here are some that don't have the checkbox filtering option:
- http://www.listjs.com/
- http://www.javascripttoolbox.com/lib/table/index.php
- http://www.datatables.net/
- http://tablesorter.com/docs/
- http://www.javascriptkit.com/script/script2/tablefilter.shtml
The list could go on, but I haven't found anything out of the box.
(Names in image are fake).
You might be able to write your own, as seen in this answer.
The basic idea is that you present a checkbox for each unique value, and only show if the corresponding checkbox is true. JS's grep feature should help tremendously.