f.Component().getInputValue()

f.Component(fid, sectorObject).getInputValue()

개요

InputText, InputNumber, InputMask 컴포넌트의 input값을 반환받을 수 있습니다.

이벤트 스크립트에서만 사용가능합니다.

대상 컨트롤 컴포넌트 : InputText, InputNumber, InputMask

예시

// 섹터 미지정
const textValue1 = f.Component("f_3").getInputValue();
// 섹터 지정
const textValue2 = f.Component("f_3", sectorObject).getInputValue();

활용

스크립트 도우미 기능을 활용하여 메서드들을 사용할 수 있는 컴포넌트 리스트를 한눈에 확인하고, fid값에 쉽게 접근 할 수 있습니다.

Last updated