I need to implement Excel kind of filtering on a table on an aspx page.
What I want is, when I click on any column header it should show me the list of rows in that column with check-box for each one and when I select specific rows then the table should filter accordingly.
Here is a working example for one column at a time. I’m working on getting this working for several columns as well: http://jsfiddle.net/mwB37/20/
Since you’re asking for a complete plugin with a UI and everything, including relevant code on SO is kinda difficult. But here are the key excerpts that defines my thinking and the concept:
If you want something already finished instead, this is such a plugin: PicNet Table Filter
There is also a filtering plugin available for the jQuery DataTables plugin, although sorting is obviously the main focus of that one.