DataOptions
DataProviderBase 의 전체설정 정보들
Signature:
export interface DataOptions
Remarks
DataProviderBase.getOptions(), setOptions 에서 사용한다.
Example
let options = ds.getOptions();
options.undoable = true;
ds.setOptions(options);
Properties
Property | Type | Description |
---|---|---|
amText | string | 데이터에서 오전에 해당하는 문자열 |
baseYear | number | 데이터의 년도가 2자리일때 기준으로 하는 년도 |
booleanFormat | string | 데이터에서 Boolean으로 Parsing 하기 위한 포맷 |
checkStates | boolean | 행 상태 관리 활성화 여부 |
datetimeFormat | string | text형식의 날짜 데이터를 datetime 값으로 Parsing하기위한 포맷 |
deletable | boolean | 행 삭제 가능 여부 |
deleteCreated | boolean | 추가된 행을 삭제 시 실제로 삭제할지의 여부 |
insertable | boolean | 행 삽입 가능 여부 |
pmText | string | 데이터에서 오후에 해당하는 문자열 |
restoreMode | string | 복원 모드 |
softDeleting | boolean | 행 삭제 시 실제로 삭제하지 않고 RowState 만 변경할지의 여부 |
strictRestore | boolean | 복원시 undefined , null , 빈 문자열을 다른 값으로 인식할지의 여부 |
subTypeEnabled | boolean | DataField 의 subType 속성의 활성화 여부 |
undoable | boolean | undo/redo 사용 여부 |
updatable | boolean | 행 수정 가능 여부 |
valuesCallback | ObjectToValuesCallback | json형태의 data를 dataProvider에 입력할때 각 행별로 호출되는 콜백 |
Properties Desc
amText
데이터에서 오전에 해당하는 문자열
Type
- string
baseYear
데이터의 년도가 2자리일때 기준으로 하는 년도
Type
- number
booleanFormat
데이터에서 Boolean으로 Parsing 하기 위한 포맷
Type
- string
checkStates
행 상태 관리 활성화 여부
Type
- boolean
datetimeFormat
text형식의 날짜 데이터를 datetime 값으로 Parsing하기위한 포맷
Type
- string
deletable
행 삭제 가능 여부
Type
- boolean
deleteCreated
추가된 행을 삭제 시 실제로 삭제할지의 여부
Type
- boolean
insertable
행 삽입 가능 여부
Type
- boolean
pmText
데이터에서 오후에 해당하는 문자열
Type
- string
restoreMode
복원 모드
Type
- string
softDeleting
행 삭제 시 실제로 삭제하지 않고 RowState 만 변경할지의 여부
Type
- boolean
strictRestore
복원시 undefined
, null
, 빈 문자열을 다른 값으로 인식할지의 여부
Type
- boolean
subTypeEnabled
DataField 의 subType 속성의 활성화 여부
Type
- boolean
undoable
undo/redo 사용 여부
Type
- boolean
Remarks:
DataProvider를 생성시 undoable상태로 생성해야 적용된다.
updatable
행 수정 가능 여부
Type
- boolean
valuesCallback
json형태의 data를 dataProvider에 입력할때 각 행별로 호출되는 콜백
Type
- ObjectToValuesCallback