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

    Interface RowEvent<T>

    셀이 아니라 "행 전체"를 마우스로 조작했을 때(행 클릭·더블클릭·마우스 올림 등) 오는 정보입니다. 컬럼 정보 없이 어느 행인지와 그 행 데이터만 필요할 때 CellEvent 보다 가볍게 씁니다. / Delivered when the user manipulates a whole row (row click / dbl-click / mouse-over …). Lighter than CellEvent for when you only need which row and its data, not the column. 관련 옵션 / Related options: onRowClick, onRowDblClick, onRowMouseOver …

    interface RowEvent<T = any> {
        originalEvent: MouseEvent;
        row: T;
        rowIndex: number;
        target: HTMLElement;
        type: string;
    }

    Type Parameters

    • T = any

      행 데이터 타입 / Row data type

    Index

    Properties

    originalEvent: MouseEvent

    브라우저 원본 마우스 이벤트. / The underlying browser mouse event.

    row: T

    그 행의 데이터 객체 전체. / The full row-data object.

    rowIndex: number

    대상 행의 화면 표시 순서 인덱스. / Screen-order index of the target row.

    target: HTMLElement

    이벤트가 일어난 행 DOM 요소. / The row DOM element where the event occurred.

    type: string

    이벤트 이름('rowClick' 등). / The event name (e.g. 'rowClick').