META UI Components
    Preparing search index...

    Interface IColumnFilter

    Фильтр для одной колонки

    interface IColumnFilter {
        columnName: string;
        filterType: "contains" | "after" | "before" | "equals" | "period";
        isActive: boolean;
        value: any;
    }
    Index

    Properties

    columnName: string

    Название колонки

    filterType: "contains" | "after" | "before" | "equals" | "period"

    Тип фильтрации

    isActive: boolean

    Активен ли фильтр

    value: any

    Значение для фильтрации