f.Frame.popUp().setOptions()
f.Frame.popUp().setOptions(target, key, value)
개요
파라미터
파라미터명
필수여부
타입
제약사항
설명
예시
// 팝업을 열기 전 옵션을 설정합니다.
let scenarioID = _collections.activeSector.scenarioid;
let stepID = _collections.activeSector.stepid;
let pop = f.Frame.popUp(scenarioID, stepID);
pop.setOptions(f.Frame.topMenu.target,f.Frame.topMenu.button.close,false);
pop.show();Last updated
Was this helpful?