IgcFilteringEvent

Event object for the filtering event of the grid.

The filter expression(s) to apply.

expressions: FilterExpression<T>[]

Defined in src/components/grid.ts:63

The target column for the filter operation.

key: Keys<T>

Defined in src/components/grid.ts:58

The type of modification which will be applied to the filter state of the column.

type: "remove" | "add" | "modify"

Defined in src/components/grid.ts:74

Remarks

add - a new filter expression will be added to the state of the column. modify - an existing filter expression will be modified. remove - the expression(s) will be removed from the state of the column.