OPEN_GRID API - v1.3.1
    Preparing search index...

    Interface FilterItem

    필터 한 줄 = "연산자 + 비교값". 예: { operator: '>=', value: 1000 } 는 값이 1000 이상인 행만 남깁니다. 한 컬럼에 여러 조건을 배열로 걸 수 있습니다(모두 만족하는 행만 통과). / One filter clause = "operator + value". e.g. { operator: '>=', value: 1000 } keeps rows whose value is at least 1000. Multiple clauses per column combine (a row must satisfy all).

    interface FilterItem {
        operator:
            | "endsWith"
            | "startsWith"
            | "="
            | "<"
            | "<="
            | ">"
            | ">="
            | "!="
            | "contains";
        value: any;
    }
    Index

    Properties

    Properties

    operator:
        | "endsWith"
        | "startsWith"
        | "="
        | "<"
        | "<="
        | ">"
        | ">="
        | "!="
        | "contains"

    비교 방식. '='·'!='·'>'·'>='·'<'·'<=' 는 값 비교, 'contains'·'startsWith'·'endsWith' 는 텍스트 부분 일치입니다. / How to compare — the six symbols are value comparisons; the three word operators are text substring matches.

    value: any

    비교 기준 값. / The value to compare against.