OPEN_GRID API - v1.3.1
    Preparing search index...

    Interface SortItem

    "이 컬럼을 이 방향으로 정렬" 한 건을 나타냅니다. 여러 개를 배열로 넘기면 앞에 있는 것이 1차 기준, 그 값이 같을 때 다음 것이 2차 기준이 되는 다중 정렬이 됩니다(예: 부서 오름차순 → 급여 내림차순). / One "sort this column this way" entry. Passed as an array, the first is the primary key and later entries break ties — i.e. multi-column sort (e.g. dept asc, then salary desc).

    interface SortItem {
        dir: SortDir;
        field: string;
    }
    Index

    Properties

    Properties

    dir: SortDir

    정렬 방향. / Sort direction.

    field: string

    정렬 기준 컬럼의 field. / field of the column to sort by.