Description

DataProvider에 필터를 적용한다. 필터에 부합하지 않은 행은 DataProvider에 존재하지 않게 된다.

Syntax

function setFilters: function (filters, filterMode)

Parameters

filters
Type: Array of String
filter조건의 배열이다.

filterMode
Type: String
Default: ‘and’
filters에 지정된 필터 조건들의 합산 방법. ‘and’ | ‘or’

Return value

none

Examples

$("#button1").click(function(){
    dataProvider.setFilters([
    "value['field1']='가수'", 
    "value['field2']='여자'"
    ], "and");

    dataProvider.setRows(data);
})

버튼을 누르면 dataProvider에 ‘field1’이 가수이면서 ‘field2’가 여자인 데이터만 저장됩니다.