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

    Interface FlatRowRef

    flat 한 행이 무엇을 가리키는지 판별하는 참조 정보(C0.3). / Reference info identifying what a flat row points to (C0.3).

    interface FlatRowRef {
        dataIndex?: number;
        displayIndex?: number;
        kind: "tree" | "group" | "data" | "detailHead" | "detailFiller";
        rowId?: string;
    }
    Index

    Properties

    dataIndex?: number

    kind==='data' 일 때 DataLayer 원본(_data) 인덱스. / DataLayer source (_data) index when kind is 'data'.

    displayIndex?: number

    정렬/필터 반영된 논리 순서. plain 모드(backing 미교체)에서만 flatIndex 와 1:1 대응. / Logical order after sort/filter; equals flatIndex 1:1 only in plain mode (backing not replaced).

    kind: "tree" | "group" | "data" | "detailHead" | "detailFiller"

    행 종류(데이터/그룹/트리/디테일 헤드·필러). / Row kind (data/group/tree/detail head·filler).

    rowId?: string

    kind==='data'|'tree' 일 때 stable id(DataLayer 가 부여한 rowId 필드값). / Stable id when kind is 'data'|'tree' (the rowId field value assigned by DataLayer).