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
Generic Concrete Pizza
Sports
463.16
2
Sleek Granite Computer
Sports
286.58
3
Gorgeous Steel Chicken
Sports
14.94
4
Modern Ceramic Cheese
Clothing
358.83
5
Tasty Concrete Ball
Home & Garden
57.13
6
Practical Cotton Chicken
Clothing
345.04
7
Intelligent Bronze Mouse
Electronics
910.28
8
Soft Cotton Chicken
Beauty
450.26
9
Tasty Wooden Salad
Beauty
214.6
10
Ergonomic Steel Keyboard
Beauty
141.71
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' }
    ]