Column filters

Implement column filtering to help users refine and sort data.

Example

Id
Filter mode:
Name
Filter mode:
Category
Filter mode:
Price Retail
Filter mode:
1
Electronic Concrete Cheese
Clothing
35.04
2
Small Steel Sausages
Beauty
419.74
3
Licensed Silk Table
Beauty
347.56
4
Tasty Marble Fish
Sports
432.39
5
Soft Concrete Pants
Home & Garden
107.54
6
Luxurious Ceramic Pizza
Home & Garden
229.65
7
Bespoke Aluminum Salad
Home & Garden
207.15
8
Handmade Wooden Hat
Sports
167.68
9
Modern Plastic Pants
Clothing
456.36
10
Modern Plastic Fish
Sports
45.59
Per page:
Page 1 of 5
Showing 1 to 10 of 50 rows

Key Points

  1. TMeta Generic for Better IntelliSense:

    You can pass an additional type to ColumnDef<InventoryItem, YOUR_TYPE>[] to enhance IntelliSense support for the _meta field.

  2. Using _meta for Custom Data:

    The _meta field allows you to pass any custom data while keeping it fully typed.

  3. Checking If a Column is Filterable:

    You can determine if a column is filterable by accessing its options: column.options.filterable

  4. Choosing Which Filters to Render:

    datagrid does not enforce a specific way to determine which filters to render.
    For example, you can use the _meta field like this:

    _meta: {
    	filterType: 'range'
    }

    This is just an example—you can use any structure that suits your needs.

  5. Passing Options For Select:

    I found it easy to pass options in this way, again it’s up to you.

    filterOptions: [
    	{ label: 'Computers', value: 'Computers' },
    	{ label: 'Clothing', value: 'clothing' }
    ]