The FilterPlugin provides a side panel UI for building complex column filters with type-aware operators. It supports string, number, date, and enum filters with automatic operator selection based on column type.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/IzumiSy/seizen-table/llms.txt
Use this file to discover all available pages before exploring further.
Installation
Import
Basic Usage
Configuration
Width of the filter side panel in pixels
Disable the global search input in the header slot
Defining Filterable Columns
To enable filtering on a column, addfilterType to the column’s meta property:
Filter Types and Operators
String Filters
- Contains - Value contains the search term
- Equals - Exact match
- Starts with - Value starts with the search term
- Ends with - Value ends with the search term
- Is empty - Value is null or empty string
- Is not empty - Value is not null or empty string
Number Filters
=(equals)≠(not equals)>(greater than)≥(greater than or equal)<(less than)≤(less than or equal)
Date Filters
- = (on date)
- Before - Before the specified date
- After - After the specified date
Enum Filters
- Is - Value matches the selection
- Is not - Value does not match the selection