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

    Interface GridShuttleOptions

    그리드 셔틀 생성 옵션. / Grid shuttle construction options.

    interface GridShuttleOptions {
        includeAll?: boolean;
        labels?: {
            allLeft?: string;
            allRight?: string;
            toLeft?: string;
            toRight?: string;
        };
        layout?: "vertical"
        | "horizontal";
    }
    Index

    Properties

    includeAll?: boolean

    전체 이동(≫ ≪) 버튼도 표시. "전체 선택 후 이동"을 한 번의 클릭으로 줄이고 싶을 때 켠다. 기본 false(개별 이동 버튼만 표시). / Also show move-all (≫ ≪) buttons, so a full transfer takes one click instead of "select all, then move". Default false (only the per-check move buttons are shown).

    false
    
    labels?: {
        allLeft?: string;
        allRight?: string;
        toLeft?: string;
        toRight?: string;
    }

    버튼 라벨 커스터마이즈(다국어 문구를 직접 넣고 싶을 때). 생략 시 그리드 로케일의 기본 문구(▶ ◀ ⏩ ⏪)를 사용한다. / Customize button labels (e.g. to hardcode a specific phrase). Falls back to the grid's locale defaults (▶ ◀ ⏩ ⏪) when omitted.

    layout?: "vertical" | "horizontal"

    버튼 배치 방향. 두 그리드가 가로로 나란히 있으면 'vertical'(위아래 버튼), 세로로 쌓여 있으면 'horizontal'을 쓴다. 기본 'vertical'. / Button layout direction. Use 'vertical' (stacked buttons) when the two grids sit side by side, or 'horizontal' when they're stacked vertically. Default 'vertical'.

    'vertical'