apex-grid
    Preparing search index...

    Interface ApexFilteringEvent<T>

    Event object for the filtering event of the grid.

    interface ApexFilteringEvent<T extends object> {
        expressions: FilterExpression<T, keyof T>[];
        key: keyof T;
        type: "remove" | "add" | "modify";
    }

    Type Parameters

    • T extends object
    Index

    Properties

    Properties

    expressions: FilterExpression<T, keyof T>[]

    The filter expression(s) to apply.

    key: keyof T

    The target column for the filter operation.

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

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

    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.