f.Collection.moveCategory()

f.Collection.moveCategory(targetCategory, status, moveCategory)

개요

대상카테고리에서 섹터상태에 해당하는 섹터를 카테고리 이동시킬 수 있습니다.

함수자동 생성 기능(링크)을 통해 생성 할 수 있습니다.

파라미터

파라미터명
필수여부
타입
제약사항
설명

targetCategory

필수

String

대상 카테고리 명

status

필수

String

이동할 섹터 상태 (기본값은 all 입니다.)

moveCategory

필수

String

이동할 카테고리 명

status

데이터(Sector)의 상태값 입니다.

status
설명

all

전체 섹터

active

Active 상태인 섹터

selected

Selected 상태인 섹터

last

Last Reflected 상태인 섹터

added

Added 상태인 섹터

updated

Updated 상태인 섹터

deleted

Deleted 상태인 섹터

예시

// targetCategory의 Active 상태인 섹터를 moveCategory로 이동
f.Collection.moveCategory('targetCategory','active','moveCategory'); //이동한 섹터를 반환

Last updated