Description

필터 검색창과 관련된 설정 정보를 관리한다.

Properties

showSearchInput
Type: Boolean
Default: true
필터 검색창 보임여부를 지정한다.

showButtons
Type: Boolean
Default: true
확인, 취소 버튼의 표시여부를 지정한다.

acceptText
Type: String
Default: “확인”
확인 버튼에 표시되는 문구를 지정한다.

cancelText
Type: String
Default: “취소”
취소 버튼에 표시되는 문구를 지정한다.

Examples

gridView.setFilteringOptions({
  clearWhenSearchCheck: true, 
  selector: {
    showSearchInput: true,   
    showButtons: true,        
    acceptText: "확인",
    cancelText: "취소"
  }
});