OPEN_GRID API - v1.5.2
    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).

    フィルター一行 = 「演算子 + 比較値」。例: { operator: '>=', value: 1000 } は値が 1000 以上の行だけを残します。 一つの列に複数の条件を配列で掛けられます(すべてを満たす行だけが通過)。

    一条筛选 =「运算符 + 比较值」。例如 { operator: '>=', value: 1000 } 只保留值不小于 1000 的行。 一个列可以用数组挂多个条件(只有全部满足的行才通过)。

    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.

    比較の方式。'='·'!='·'>'·'>='·'<'·'<=' は値の比較、'contains'·'startsWith'·'endsWith' はテキストの部分一致です。

    比较方式。'='·'!='·'>'·'>='·'<'·'<=' 是值比较,'contains'·'startsWith'·'endsWith' 是文本的部分匹配。

    value: any

    비교 기준 값.

    The value to compare against.

    比較の基準となる値。

    用于比较的基准值。