npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

handsontable-column-filter

v1.0.0

Published

Column filter plugin for Handsontable 6.x (free version) - Excel-like dropdown filter with checkboxes

Readme

handsontable-column-filter

Column filter plugin for Handsontable 6.x (free/MIT version). Adds Excel-like dropdown filter with checkboxes to column headers.

Features

  • Dropdown filter button (▼) in each column header
  • Checkbox list to select/deselect values
  • "Select All" and "Clear" buttons
  • Visual indicator when filter is active
  • Callback on filter change
  • API to get/set filter state programmatically

Installation

npm install handsontable-column-filter

Usage

With bundler (webpack, etc.)

import Handsontable from 'handsontable';
import 'handsontable/dist/handsontable.full.css';
import ColumnFilterPlugin from 'handsontable-column-filter';

// Register the plugin
ColumnFilterPlugin(Handsontable);

// Create table with filter enabled
const hot = new Handsontable(container, {
  data: myData,
  columns: [
    { data: 'id', title: 'ID' },
    { data: 'name', title: 'Name' },
    { data: 'city', title: 'City' },
  ],
  colHeaders: true,
  columnFilter: true,  // Enable the plugin
  licenseKey: 'non-commercial-and-evaluation',
});

With script tag

<script src="handsontable/dist/handsontable.full.min.js"></script>
<link rel="stylesheet" href="handsontable/dist/handsontable.full.min.css">
<script src="handsontable-column-filter/dist/handsontable-column-filter.js"></script>

<script>
  // Plugin auto-registers when Handsontable is available globally
  const hot = new Handsontable(container, {
    data: myData,
    columnFilter: true,
  });
</script>

Options

columnFilter: {
  // Callback when filter changes
  onFilter: (visibleCount, totalCount) => {
    console.log(`Showing ${visibleCount} of ${totalCount} rows`);
  }
}

API

Get plugin instance:

const filterPlugin = hot.getPlugin('columnFilter');

Methods

resetFilters()

Reset all filters to show all data.

filterPlugin.resetFilters();

getFilterState()

Get current filter state.

const state = filterPlugin.getFilterState();
// { 0: [1, 2, 3], 1: ['Moscow', 'London'], ... }

setFilterState(state)

Set filter state programmatically.

filterPlugin.setFilterState({
  2: ['Moscow', 'London']  // Column 2: only show Moscow and London
});

Compatibility

  • Handsontable 6.x (free/MIT version)
  • Works with both array and object data sources
  • Works with React wrapper (@handsontable/react)

Why this plugin?

The built-in filters plugin in Handsontable is a PRO feature requiring a paid license. This plugin provides similar functionality for the free version (6.2.x).

License

MIT