CellIndex
셀의 위치정보 모델
Signature:
export interface CellIndex Remarks
onCurrentChanging 등 GridBase 의 여러 콜백 및 셀 위치 관련 method 들에서 주로 사용된다.
필요한 정보만 사용하면 된다.
Example
gridView.setCurrent({ itemIndex: 1, column: '행정구역별' });Properties
| Property | Type | Description |
|---|---|---|
| column | string | GridColumn | 컬럼 이름 |
| dataRow | number | 고유의 행 번호 |
| fieldIndex | number | 필드 순서 |
| fieldName | string | 필드명 |
| itemIndex | number | 그리드 상에서의 순서 |
Properties Desc
column
컬럼 이름
Type - string | GridColumn
dataRow
고유의 행 번호
Type - number
fieldIndex
필드 순서
Type - number
fieldName
필드명
Type - string
itemIndex
그리드 상에서의 순서
Type - number