Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8746339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:10:41+00:00 2026-06-13T12:10:41+00:00

I need to implement Excel kind of filtering on a table on an aspx

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T12:10:42+00:00Added an answer on June 13, 2026 at 12:10 pm

    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:

    // fetching the column index
    var columnIndex = th.index();
    
    // then fetching the corresponding TDs (use for-loop when thousands of elements)
    var tds = th.closest('table')
                .find('tbody td:nth-child(' + (columnIndex+1) + ')');
    
    // distinctively selecting the unique text values in those columns
    var checks = $.unique(tds.map(function() {
        return $(this).text();
    }).get());
    
    // the most basic way possible of filtering
    // (should be extended into an OR query of all current column filters)
    if (index != -1 || arr.length == 0)
        td.parent('tr').show();
    else
        td.parent('tr').hide();
    

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to implement an efficient excel-like app. I'm looking for a data structure
I need to implement a simple monitoring app in Excel. It is for monitoring
I need to implement the following: There is a table A which is supposed
I need to implement an inverted beta function in MySQL (similar to Excel's BETAINV
I need to implement the following in the asp.net Gridview. I have the excel
I need to implement reporting.. with Excel sheets and need a lot of heavy
In our project we need to implement Excel-like grid for web, which will look
I'm trying to implement a page that allows Excel users to use the data
I need to implement a excel like interface, but as a webapp. It is
I need to implement a feature that would allow users to filter table data

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.