EditResult
GridBase.onGetEditValue 에서 쓰이는 셀 편집 후 출력 정보
Signature:
export interface EditResult
Remarks
DropDownCellEditor, SearchCellEditor, MultiCheckCellEditor의 경우 editResult.text에는 labels에 해당하는 값이 출력되고 editResult.value에는 values에 해당하는 값이 출력된다.
DateCellEditor의 경우에는 editResult.text에는 editor의 datetimeFormat으로 Formatting된 값이 출력되고 editResult.value에는 Date객체가 출력된다.
다른 Editor의 경우 text와 value에 동일한 값이 출력된다.
Properties
Property | Type | Description |
---|---|---|
list | any | any[] | DropDownCellEditor.listCallback에서 전달된 값 |
oldValue | any | 편집전 셀의 데이터 값 |
text | string | 텍스트 |
value | any | 값 |
Properties Desc
list
DropDownCellEditor.listCallback에서 전달된 값
Type
- any | any[]
oldValue
편집전 셀의 데이터 값
Type
- any
text
텍스트
Type
- string
value
값
Type
- any