ColumnFilter
컬럼 필터링에 관련된 설정 정보
Signature:
export interface ColumnFilter
Remarks
GridBase.onFilteringChanged 나 GridBase.getColumnFilter() 같은 필터 관련 메소드에서 사용된다.
GridBase.setColumnFilters() 같이 설정을 위한 형식일 때에는, 원하는 정보만 넣으면 된다.
Events
Property | Type | Description |
---|---|---|
callback | FilterCallback | 필터를 결정하는 콜백 |
Properties
Property | Type | Description |
---|---|---|
active | boolean | 필터활성화 여부 |
criteria | string | 표현식 |
description | string | 설명 |
name | string | 이름 |
tag | string | 태그 |
text | string | 필터 선택 상자에 표시되는 문자열 |
visible | boolean | 표시 여부 |
Events Desc
callback
필터를 결정하는 콜백
Type
- FilterCallback
Remarks:
true
: 필터링 대상일 때, false
: 필터링 제외 대상일 때
Properties Desc
active
필터활성화 여부
Type
- boolean
criteria
표현식
Type
- string
Remarks:
criteria 또는 callback 둘중 하나는 지정되어야 한다.
description
설명
Type
- string
name
이름
Type
- string
tag
태그
Type
- string
text
필터 선택 상자에 표시되는 문자열
Type
- string
Remarks:
null
이면 name
이 표시된다.
visible
표시 여부
Type
- boolean