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

    Function createGridShuttle

    두 그리드 사이 행 이동 셔틀(화살표 버튼 UI). / Row shuttle between two grids (arrow-button UI).

    • 두 그리드 사이에 셔틀(화살표 이동) 버튼을 만든다. / Create shuttle (arrow-move) buttons between two grids.

      new GridShuttle(...) 과 동일하되, new 없이 함수 호출 한 줄로 끝내고 싶을 때 쓰는 편의 팩토리. / Same as new GridShuttle(...), but a convenience factory for callers who'd rather skip new.

      Parameters

      • left: OpenGridInstance

        왼쪽 그리드 인스턴스 / Left grid instance

      • right: OpenGridInstance

        오른쪽 그리드 인스턴스 / Right grid instance

      • mount: HTMLElement

        셔틀 버튼을 붙일 마운트 엘리먼트 / Mount element to attach the shuttle buttons

      • Optionalopts: GridShuttleOptions

        셔틀 옵션 / Shuttle options

      Returns GridShuttle

      생성된 GridShuttle 인스턴스 / The created GridShuttle instance

      const shuttle = createGridShuttle(leftGrid, rightGrid, mountEl, { includeAll: true });