getDistinctValues
Description
지정한 필드로 Ascending Sort 후 같은 필드 데이터는 중복 제거하고 지정한 개수만큼 가져온다.
Syntax
function getDistinctValues(field, maxCount)
Parameters
field
Type: String
필드명
maxCount
Type: Number
가져올 데이터의 개수
sortDirs
Type: Array of SortDirection
중복 제거된 값을 가져올때의 정렬 방향을 지정한다.
RealGridJS 1.1.29부터 지원된다.
Return value
Type: Array
중복제거한 필드데이터
Examples
$("#button1").click(function(){ alert(dataProvider.getDistinctValues("field1", 2)); })
버튼을 누르면 지정한 필드에서 중복을 제거하여 maxCount개수만큼 데이터를 가져온다.