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

    Interface RowExpandEvent<T>

    행 상세 패널이 펼쳐지거나(rowExpand) 접힐 때(rowCollapse) 핸들러로 오는 정보입니다. 어느 행인지와, 그 상세 패널이 붙은 DOM 요소(host)를 함께 줍니다.

    Delivered when a row's detail panel expands (rowExpand) or collapses (rowCollapse). It tells you which row it was and the DOM element (host) the detail panel is attached to.

    行の詳細パネルが展開されたとき(rowExpand)、または折りたたまれたとき(rowCollapse)にハンドラーへ届く情報です。 どの行かと、その詳細パネルが付いているDOM要素(host)を一緒に渡します。

    行的详情面板展开(rowExpand)或折叠(rowCollapse)时送到处理函数的信息。它告诉你是哪一行, 以及详情面板挂在哪个 DOM 元素(host)上。

    interface RowExpandEvent<T = any> {
        host: HTMLElement | null;
        row: T;
        rowId: string;
        rowIndex: number;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Properties

    host: HTMLElement | null

    상세 패널이 붙은 DOM 요소(접힘 이벤트에서는 null 일 수 있음).

    The DOM element the detail panel is attached to (may be null on collapse).

    詳細パネルが付いているDOM要素(折りたたみイベントでは null のことがある)。

    详情面板挂载的 DOM 元素(折叠事件中可能为 null)。

    row: T

    그 행의 데이터 객체.

    The row-data object.

    その行のデータオブジェクト。

    该行的数据对象。

    rowId: string

    대상 행의 안정적 id.

    Stable id of the target row.

    対象行の安定した id。

    目标行的稳定 id。

    rowIndex: number

    대상 행의 화면 표시 순서 인덱스.

    Screen-order index of the target row.

    対象行の画面表示順のインデックス。

    目标行按屏幕显示顺序的索引。