FilteringOptions
컬럼 필터링과 관련된 설정 모델
Signature:
export interface FilteringOptions
Remarks
그리드 에서 옵션으로 설정할 때는 필요한 정보만 넣으면 된다.
Example
grid.setFilteringOptions({enabled: false});
Properties
Property | Type | Description |
---|---|---|
automating | FilterAutomatingOptions | 자동 필터링에 대한 설정 모델 |
commitBeforeFiltering | boolean | 필터링 전에 commit 할 건지의 여부 |
enabled | boolean | 필터 핸들이나 Indicator Head를 클릭으로 필터 상자 표시 가능 여부 |
handleVisibility | HandleVisibility | 필터 핸들의 표시 방법 |
includeParentItem | boolean | TreeView 에서 검색된 데이터 행의 부모 행도 표시할지의 여부 |
selector | FilterSelectorOptions | 필터 선택 상자에 대한 설정 모델 |
toast | ToastOptions | toast 관련 설정 |
Properties Desc
automating
자동 필터링에 대한 설정 모델
Type
- FilterAutomatingOptions
Remarks:
FilterAutomatingOptions 모델을 따른다.
commitBeforeFiltering
필터링 전에 commit 할 건지의 여부
Type
- boolean
enabled
필터 핸들이나 Indicator Head를 클릭으로 필터 상자 표시 가능 여부
Type
- boolean
handleVisibility
필터 핸들의 표시 방법
Type
- HandleVisibility
includeParentItem
TreeView 에서 검색된 데이터 행의 부모 행도 표시할지의 여부
Type
- boolean
selector
필터 선택 상자에 대한 설정 모델
Type
- FilterSelectorOptions
Remarks:
FilterSelectorOptions 모델을 따른다.
toast
toast 관련 설정
Type
- ToastOptions
Remarks:
ToastOptions 모델을 따른다.