**Use Case:** You have a search input field where users can type to filter a "Name" column.
**Action Configuration:** * **Column:** `Name` * **Filter Value:** Bind this to the value of your search input element. **Behavior:** The table will display only the rows where the "Name" column *contains* the text entered in the search input. This is case-insensitive. For example, typing "john" would match "John Doe" and "Johnson".**Use Case:** You have two input fields to filter an "Amount" or "Order Date" column for values within a specific range.
To filter a range, you must provide a two-element array `[min, max]` as the `Filter Value`. This works for both numbers and date strings.**Use Case:** You have a "Reset" button that should only clear the status filter.
**Action Configuration:** * **Action:** `Set Column Filter` * **Column:** `status` * **Filter Value:** Leave the value empty or set it to `undefined`.